dermy-api/src/model.rs

9 lines
163 B
Rust
Raw Normal View History

2024-06-06 18:21:12 +00:00
pub fn router() -> axum::Router {
axum::Router::new()
.route("/",
axum::routing::post(get_predict)
)
}
async fn get_predict() {}