43 lines
973 B
Rust
43 lines
973 B
Rust
|
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([])
|
||
|
}
|