//! 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);
}