diff --git a/src/dl.rs b/src/dl.rs new file mode 100644 index 0000000..3137393 --- /dev/null +++ b/src/dl.rs @@ -0,0 +1 @@ +pub mod download; \ No newline at end of file diff --git a/src/dl/download.rs b/src/dl/download.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/main.rs b/src/main.rs index a09ffb3..f7a5612 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,6 +10,8 @@ use teloxide::dispatching::dialogue::InMemStorage; use teloxide::dispatching::UpdateHandler; use teloxide::{prelude::*, update_listeners::Polling, utils::command::BotCommands}; +mod dl; + type State = (); type MyDialogue = Dialogue>;