- add: logout packet handler - add: connection state and service for storing connection data - add: session service calls to auth-service - fix: compile error on database service due to moved redis cache
18 lines
282 B
Rust
18 lines
282 B
Rust
pub mod grpc;
|
|
pub mod jwt;
|
|
pub mod database_client;
|
|
|
|
pub mod users;
|
|
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; |