6 lines
137 B
Rust
6 lines
137 B
Rust
use actix_web::web::ServiceConfig;
|
|
|
|
pub(crate) fn configure(cfg: &mut ServiceConfig) -> () {
|
|
cfg.service(super::view::index_page);
|
|
}
|