1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 17:47:29 +00:00

Let's make this a lib instead of an app

This commit is contained in:
Steffo 2022-08-03 15:52:22 +00:00 committed by GitHub
parent d8bead0598
commit 6febd98f2a
2 changed files with 1 additions and 9 deletions

1
src/lib.rs Normal file
View file

@ -0,0 +1 @@
pub mod schema;

View file

@ -1,9 +0,0 @@
mod schema;
/// Run the bot.
#[tokio::main]
async fn main() {
pretty_env_logger::init();
log::debug!("There's nothing here yet.")
}