nacos-rs

A Rust clinet for operating Nacos.

This project is heavy under development.

Quick Guide

```rust use nacos_core::NacosClient;

[tokio::main]

async fn main() -> anyhow::Result<()> { let client = NacosClient::new("http", "localhost", 8848); let namespaceclient = client.namespaceclient(); let namespaces = namespaceclient.listnamespaces().await?; for ns in namespaces.iter() { println!("{} {}", ns.namespace, ns.namespaceshowname); } Ok(()) } ```