11 lines
163 B
Rust
11 lines
163 B
Rust
use actix_web::web::ServiceConfig;
|
|
|
|
mod location;
|
|
mod user;
|
|
|
|
pub fn init(cfg: &mut ServiceConfig) {
|
|
cfg.service(location::get);
|
|
|
|
cfg.service(user::get);
|
|
}
|