mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-01-07 01:37:26 +03:00
9 lines
225 B
Rust
9 lines
225 B
Rust
mod core;
|
|
mod icons;
|
|
mod identity;
|
|
mod web;
|
|
|
|
pub use self::core::routes as core_routes;
|
|
pub use self::icons::routes as icons_routes;
|
|
pub use self::identity::routes as identity_routes;
|
|
pub use self::web::routes as web_routes;
|