diff options
Diffstat (limited to 'crates/discord-bot/src/main.rs')
| -rw-r--r-- | crates/discord-bot/src/main.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/crates/discord-bot/src/main.rs b/crates/discord-bot/src/main.rs new file mode 100644 index 0000000..acbf9fd --- /dev/null +++ b/crates/discord-bot/src/main.rs @@ -0,0 +1,10 @@ +#[tokio::main] +async fn main() -> eyre::Result<()> { + dotenvy::dotenv().ok(); + env_logger::try_init()?; + + let mut client = discord_bot::client().await?; + client.start().await?; + + Ok(()) +} |
