refactor(core/models): move models into v0 module

This commit is contained in:
Paul Makles
2023-04-23 18:09:16 +01:00
parent d5d922d830
commit 39fec310f9
7 changed files with 13 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
mod bots;
mod files;
mod users;
pub use bots::*;
pub use files::*;
pub use users::*;