This commit is contained in:
Daniel García
2021-03-14 23:35:55 +01:00
parent 2969e87b52
commit 8da5b99482
20 changed files with 812 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ mod ciphers;
mod folders;
mod organizations;
pub mod two_factor;
mod sends;
pub fn routes() -> Vec<Route> {
let mut mod_routes = routes![
@@ -20,6 +21,7 @@ pub fn routes() -> Vec<Route> {
routes.append(&mut folders::routes());
routes.append(&mut organizations::routes());
routes.append(&mut two_factor::routes());
routes.append(&mut sends::routes());
routes.append(&mut mod_routes);
routes