pub fn router() -> axum::Router { axum::Router::new() .route("/", axum::routing::post(get_predict) ) } async fn get_predict() {}