summaryrefslogtreecommitdiff
path: root/crates/bot/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/bot/src/main.rs')
-rw-r--r--crates/bot/src/main.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/crates/bot/src/main.rs b/crates/bot/src/main.rs
deleted file mode 100644
index 390e79b..0000000
--- a/crates/bot/src/main.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#[tokio::main]
-async fn main() -> Result<(), bot_error::Error> {
- dotenvy::dotenv().ok();
- env_logger::try_init()?;
-
- let mut client = bot_client::get().await?;
- client.start().await?;
-
- Ok(())
-}