- auth: register/login/refresh/logout w/ JWT+Argon2, protected mutations - domain: User, RefreshSession, auth ports, Unauthorized/Forbidden errors - presentation: context/state/factory/errors/extractors/openapi modules - routes behind /api, SPA served from root w/ fallback - OpenAPI Scalar at /docs - frontend ssr:false, single-binary Dockerfile
7 lines
98 B
Rust
7 lines
98 B
Rust
pub mod commands;
|
|
pub mod deps;
|
|
pub mod login;
|
|
pub mod logout;
|
|
pub mod refresh;
|
|
pub mod register;
|