blob: 8a67d575fa9ccc4ed71673d4bcc480fcb401934b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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);
}
|