ready to move gRPC into a single services folder, time to do the changes now

This commit is contained in:
filipriec
2025-03-31 09:39:47 +02:00
parent f66d67c238
commit dd4d9e88c6
6 changed files with 13 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
// services/mod.rs
pub mod grpc_client;
pub mod adresar;
pub mod table;
pub mod profile;
pub mod auth;
pub use grpc_client::*;
pub use adresar::*;
pub use table::*;
pub use profile::*;
pub use auth::*;