14 lines
358 B
Rust
14 lines
358 B
Rust
use proxmox_router::list_subdirs_api_method;
|
|
use proxmox_router::{Router, SubdirMap};
|
|
use proxmox_sys::sortable;
|
|
|
|
pub mod openid;
|
|
pub mod tfa;
|
|
|
|
#[sortable]
|
|
const SUBDIRS: SubdirMap = &sorted!([("openid", &openid::ROUTER), ("tfa", &tfa::ROUTER),]);
|
|
|
|
pub const ROUTER: Router = Router::new()
|
|
.get(&list_subdirs_api_method!(SUBDIRS))
|
|
.subdirs(SUBDIRS);
|