rivet-adapter-axum 0.1.0

Rivet framework crates and adapters.
Documentation
1
2
3
4
5
use rivet_http::{Request, Response};

pub fn handle(_req: Request) -> Response {
    Response::ok("api controller")
}