2024-11-22 13:13:04 +08:00
|
|
|
pub mod auth;
|
2024-11-21 01:04:59 +08:00
|
|
|
pub mod intsall;
|
|
|
|
pub mod person;
|
2024-11-22 13:13:04 +08:00
|
|
|
pub mod theme;
|
|
|
|
use rocket::routes;
|
2024-11-21 01:04:59 +08:00
|
|
|
|
2024-11-22 13:13:04 +08:00
|
|
|
pub fn jwt_routes() -> Vec<rocket::Route> {
|
|
|
|
routes![auth::token::token_system]
|
2024-11-21 19:07:42 +08:00
|
|
|
}
|