kill_port 0.1.7

Cross-platform utility to terminate processes by port efficiently. 跨平台高效终止端口进程工具。
Documentation
use aok::{OK, Void};
use log::info;

#[static_init::constructor(0)]
extern "C" fn _log_init() {
  log_init::init();
}

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

#[test]
fn test() -> Void {
  info!("> test {}", 123456);
  OK
}