24 lines
341 B
Rust
24 lines
341 B
Rust
pub mod database_client;
|
|
pub mod grpc;
|
|
pub mod jwt;
|
|
|
|
pub mod users;
|
|
|
|
pub mod common {
|
|
tonic::include_proto!("common");
|
|
}
|
|
|
|
pub mod auth {
|
|
tonic::include_proto!("auth");
|
|
}
|
|
pub mod database {
|
|
tonic::include_proto!("user_db_api");
|
|
}
|
|
|
|
pub mod session {
|
|
tonic::include_proto!("session_service_api");
|
|
}
|
|
|
|
#[cfg(test)]
|
|
pub mod mocks;
|