nacos-sdk 0.7.0

Nacos client in Rust.
Documentation
1
2
3
4
5
6
7
8
use nacos_macro::response;

use crate::naming::dto::ServiceInfo;

#[response(identity = "QueryServiceResponse", module = "naming")]
pub(crate) struct QueryServiceResponse {
    pub(crate) service_info: ServiceInfo,
}