summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-06 14:59:05 -0400
committerseth <[email protected]>2023-04-07 03:42:48 -0400
commit85c391286f6cf5fc9eb31fd2d6886250f9a03c6c (patch)
treea07bd8752f25b87511b7c1f47577e64470aba37f /src/main.rs
parent9a1a1b791aeb169dcade5c46862ea6eee060350a (diff)
move long constants to their own file
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 4565bd4..89a686c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -10,6 +10,7 @@ use std::{env, vec};
mod api;
mod commands;
+mod consts;
mod utils;
const GUILD: u64 = 1055663552679137310;
@@ -35,7 +36,7 @@ impl EventHandler for Handler {
let mut echo_msgs = vec!["🗿", "Twitter's Recommendation Algorithm"];
- for emoji in utils::TEAMOJIS {
+ for emoji in consts::TEAMOJIS {
// i was also lazy here
echo_msgs.push(emoji);
}