kegani-cli 0.1.1

CLI tool for Kegani framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Route aggregation module
//!
//! All routes are registered here and mounted under specific paths.

pub mod health;

use actix_web::web;

pub fn configure(cfg: &mut web::ServiceConfig) {
    health::configure(cfg);
}