Reviewed-on: phoenix/icarus_auth#20 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
11 lines
248 B
Rust
11 lines
248 B
Rust
pub mod common;
|
|
pub mod login;
|
|
pub mod register;
|
|
|
|
pub mod endpoints {
|
|
pub const ROOT: &str = "/";
|
|
pub const REGISTER: &str = "/api/v2/register";
|
|
pub const DBTEST: &str = "/api/v2/test/db";
|
|
pub const LOGIN: &str = "/api/v2/login";
|
|
}
|