From 85c391286f6cf5fc9eb31fd2d6886250f9a03c6c Mon Sep 17 00:00:00 2001 From: seth Date: Thu, 6 Apr 2023 14:59:05 -0400 Subject: move long constants to their own file --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') 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); } -- cgit v1.2.3