FrostByte/server/src/routes/mod.rs

8 lines
90 B
Rust
Raw Normal View History

mod comment;
2023-10-20 06:06:55 +02:00
mod post;
mod users;
pub use comment::*;
2023-10-20 06:06:55 +02:00
pub use post::*;
pub use users::*;