From 6e168a091d13b5ebb0beb7bb93c2b8c6f6d92711 Mon Sep 17 00:00:00 2001 From: Cody Date: Mon, 26 Jun 2023 23:54:29 -0500 Subject: Deleted documentation directory --- examples/modules/bot.sloth | 7 ------- examples/modules/mod.sloth | 15 --------------- 2 files changed, 22 deletions(-) delete mode 100644 examples/modules/bot.sloth delete mode 100644 examples/modules/mod.sloth (limited to 'examples') diff --git a/examples/modules/bot.sloth b/examples/modules/bot.sloth deleted file mode 100644 index 1355ddb..0000000 --- a/examples/modules/bot.sloth +++ /dev/null @@ -1,7 +0,0 @@ -use slowcord::DiscordBot; - -pub type Bot; - -impl DiscordBot for Bot { - # TODO: -} diff --git a/examples/modules/mod.sloth b/examples/modules/mod.sloth deleted file mode 100644 index 75be7e1..0000000 --- a/examples/modules/mod.sloth +++ /dev/null @@ -1,15 +0,0 @@ -# Root module - Run this to start program - -pub use extern "logging"; -pub use extern "dotenv"; -pub use extern "slowcord"; -pub use extern "sqlite"; - -use logging::LogLevel; -use bot::Bot; - -logging::set_loglevel(LogLevel::WARN); - -val token = dotenv::get("TOKEN"); -val bot = Bot::new(); -bot.start(token); -- cgit v1.2.3