add: log test helper

This commit is contained in:
2023-12-02 14:04:58 +11:00
parent 342ac49bea
commit 64fa76d39b
7 changed files with 40 additions and 12 deletions

13
src/main.rs Normal file
View File

@@ -0,0 +1,13 @@
mod init;
use std::error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn error::Error>> {
if let Err(e) = init::start().await {
eprintln!("{}", e);
return Err(e.into());
}
Ok(())
}