2023-06-19 16:28:13 +00:00
|
|
|
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();
|
2023-06-19 16:28:13 +00:00
|
|
|
let config = Config::load("./config.toml");
|
|
|
|
run(config).await
|
2023-06-03 15:19:00 +00:00
|
|
|
}
|