Move SQL stuff into separate models module

This commit is contained in:
2021-07-08 21:19:16 -04:00
parent d8080091f2
commit 19350081c3
8 changed files with 284 additions and 251 deletions

6
src/models/mod.rs Normal file
View File

@@ -0,0 +1,6 @@
pub mod cell;
pub mod file;
pub mod game;
pub mod game_mod;
pub mod plugin;
pub mod plugin_cell;