1个不稳定版本
0.1.0-alpha | 2024年7月5日 |
---|
#3 in #centralized
56 每月下载量
56KB
1.5K SLoC
DLCNS
DarkLight集中命名服务(库)用于获取与DarkLight服务器ID和端口关联的易读名称。此库可以获取名称的ID或从ID获取名称。请参阅examples/
中的用法。
use dlcns::get::CNSGet;
fn main() {
let mut cnsget = CNSGet::new();
let id = cnsget.get_owner_name(String::from("test"));
if id.is_some() {
println!("{:?}", id.unwrap());
} else {
println!("Not found");
}
}
依赖项
~3.5–5MB
~154K SLoC