1个不稳定版本
0.1.1 | 2024年4月9日 |
---|
#10 in #alive
5KB
66 代码行
alive_conf
use std::path::PathBuf;
use alive_conf::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
~140K SLoC