rapid-rs
Zero-config, batteries-included web framework for Rust. FastAPI meets Spring Boot, powered by Axum.
Quick Start
use *;
async
Zero-config, batteries-included web framework for Rust. FastAPI meets Spring Boot, powered by Axum.
use rapid_rs::prelude::*;
#[tokio::main]
async fn main() {
App::new()
.auto_configure()
.run()
.await
.unwrap();
}