about summary refs log tree commit diff stats
path: root/crates/rocie-server/src/api/set/no_auth/mod.rs
blob: 27783fc011c92697468ab1b434e73da70af7b82e (plain) (blame)
1
2
3
4
5
6
7
use actix_web::web;

pub(crate) mod user;

pub(crate) fn register_paths(cfg: &mut web::ServiceConfig) {
    cfg.service(user::login).service(user::logout).service(user::provision);
}