diff options
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r-- | webapp/src/components.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webapp/src/components.rs b/webapp/src/components.rs index e13d372..6d9a5ec 100644 --- a/webapp/src/components.rs +++ b/webapp/src/components.rs @@ -5,11 +5,13 @@ mod hand; mod bidding_table; mod bidding_box; mod bidding; +mod game; pub use self::card::*; pub use self::bidding_box::*; pub use self::bidding_table::*; pub use self::bidding::*; +pub use self::game::*; pub use self::hand::*; pub fn suit_css_class(suit: Suit) -> &'static str { |