mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-16 18:26:37 +00:00
10 lines
225 B
Rust
10 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;
|