refactor: reorganize backend modules and create lib.rs

This commit is contained in:
2025-12-11 16:28:28 -06:00
parent d4454d7367
commit e23c01e4fd
5 changed files with 55 additions and 54 deletions

5
backend/src/lib.rs Normal file
View File

@@ -0,0 +1,5 @@
pub mod config;
pub mod handlers;
pub mod models;
pub mod railway;
pub mod state;