diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
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); } |
