fusen-common 0.8.12

fusen-common
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

pub mod config;
pub mod register;

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct NacosConfig {
    pub server_addr: String,
    pub namespace: Option<String>,
    pub username: Option<String>,
    pub password: Option<String>,
}