mod account;
mod db;
mod model;
pub fn router() -> axum::Router {
axum::Router::new()
.nest("/account", account::router())
.nest("/predict", model::router())
}