7 lines
183 B
Rust
7 lines
183 B
Rust
use actix_web::web::{self, ServiceConfig};
|
|
|
|
mod project;
|
|
|
|
pub fn register_controllers(cfg: &mut ServiceConfig) {
|
|
cfg.service(web::scope("/projects").configure(project::setup));
|
|
}
|