1 个不稳定版本

0.1.2 2024年8月1日

#7#aok

Download history 106/week @ 2024-07-29 7/week @ 2024-08-05

113 每月下载量

MulanPSL-2.0

7KB
111 代码行

tfp

use std::path::PathBuf;

use aok::{Result, OK};
use static_init::constructor;

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

// #[tokio::test]
// async fn test() -> Result<()> {
//   info!("{}", 123456);
//   OK
// }

#[test]
fn test() -> Result<()> {
  let dir = env!("CARGO_MANIFEST_DIR");
  let dir: PathBuf = dir.into();
  let fp = dir.join("README.mdt");
  tfp::tfp(fp)?;
  OK
}

依赖项

~130KB