empty ready for a new logic

This commit is contained in:
filipriec
2025-03-03 15:43:40 +01:00
parent df39d967f4
commit 2ac988303e
5 changed files with 9 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ pub mod uctovnictvo;
pub mod shared; pub mod shared;
pub mod table_structure; pub mod table_structure;
pub mod table_definition; pub mod table_definition;
pub mod tables_data;
// Re-export run_server from the inner server module: // Re-export run_server from the inner server module:
pub use server::run_server; pub use server::run_server;

View File

@@ -0,0 +1,4 @@
// server/src/tables_data/handlers.rs
pub mod post_tables;
pub use post_tables::post_tables;

View File

@@ -0,0 +1,4 @@
// src/tables_data/mod.rs
pub mod models;
pub mod handlers;

View File