frogbot/src/main.rs

10 lines
213 B
Rust
Raw Normal View History

use frogbot::{run, Config};
2023-06-03 15:19:00 +00:00
#[tokio::main]
async fn main() -> anyhow::Result<()> {
// init logging
tracing_subscriber::fmt::init();
let config = Config::load("./config.toml");
run(config).await
2023-06-03 15:19:00 +00:00
}