added team command, added game command, added about command

added request module, added nfl module, among other items
This commit is contained in:
2024-11-10 04:01:34 -05:00
commit 031b2be817
22 changed files with 4027 additions and 0 deletions

42
src/util/nfl.rs Normal file
View File

@@ -0,0 +1,42 @@
use std::collections::HashMap;
pub fn nfl_teams<'a>() -> HashMap<u32, &'a str> {
HashMap::from([
(1, "falcons"),
(2, "bills"),
(3, "bears"),
(4, "bengals"),
(5, "browns"),
(6, "cowboys"),
(7, "broncos"),
(8, "lions"),
(9, "packers"),
(10, "titans"),
(11, "colts"),
(12, "chiefs"),
(13, "raiders"),
(14, "rams"),
(15, "dolphins"),
(16, "vikings"),
(17, "patriots"),
(18, "saints"),
(19, "giants"),
(20, "jets"),
(21, "eagles"),
(22, "cardinals"),
(23, "steelers"),
(24, "chargers"),
(25, "49ers"),
(26, "seahawks"),
(27, "buccaneers"),
(28, "commanders"),
(29, "panthers"),
(30, "jaguars"),
(33, "ravens"),
(34, "texans"),
])
}
pub fn nfl_conferences<'a>() -> HashMap<u32, &'a str> {
HashMap::from([])
}