diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,4 +1,13 @@ | |||
1 | pub mod update; | ||
2 | pub mod apis; | 1 | pub mod apis; |
2 | pub mod config; | ||
3 | pub mod commands; | ||
4 | pub mod input; | ||
5 | pub mod db; | ||
3 | 6 | ||
4 | pub use apis::*; | 7 | pub use apis::*; |
8 | pub use commands::*; | ||
9 | |||
10 | pub enum Modloader { | ||
11 | Fabric, | ||
12 | Forge | ||
13 | } | ||