4 个版本
0.1.5 | 2024年4月23日 |
---|---|
0.1.4 | 2024年4月11日 |
0.1.3 | 2024年4月11日 |
0.1.2 | 2024年4月10日 |
#10 在 #alive
用于 2 crates
11KB
262 代码行
alive_watch
use std::path::PathBuf;
use alive_watch::Conf;
use aok::{Result, OK};
use static_init::constructor;
use tracing::info;
#[constructor(0)]
extern "C" fn init() {
loginit::init()
}
#[test]
fn test() -> Result<()> {
let dir: PathBuf = std::env!("CARGO_MANIFEST_DIR").into();
let conf = Conf::new(dir.parent().unwrap().join("conf"));
info!("dir: {:?}", conf);
for i in conf.cluster("ol")?.iter() {
dbg!(i);
}
OK
}
依赖项
~5–13MB
~154K SLoC