Crates.io | axum-routes-macros |
lib.rs | axum-routes-macros |
version | 0.1.1 |
source | src |
created_at | 2024-10-13 20:58:21.855849 |
updated_at | 2024-10-16 19:47:56.682931 |
description | Create an axum Router from an enum and resolve routes |
homepage | https://github.com/zllak/axum-routes |
repository | https://github.com/zllak/axum-routes |
max_upload_size | |
id | 1407678 |
size | 33,459 |
axum-routes
is a crate on top of axum to
declare routers through enums, and resolve easily routes, so we don't have to
hardcode routes when linking in web apps.
axum::Router
using enumsuse axum::{extract::Path, Json};
use axum_routes::routes;
use http::StatusCode;
use serde_json::{json, Value};
use tower::ServiceBuilder;
use tower_http::trace::TraceLayer;
#[routes]
enum MyApp {
#[nest("/api", customize = custom_api)]
Api(APIRoutes),
#[get("/", handler = home)]
Home,
#[get("/about", handler = about)]
About,
}
#[routes]
enum APIRoutes {
#[get("/users/:id", handler = get_users_by_id)]
GetUsersByID,
#[post("/users", handler = create_user)]
CreateUser,
}
// ----------------------------------------------------------------------------
// Handlers
async fn home() -> &'static str {
"Hello world!"
}
async fn about() {}
async fn get_users_by_id(Path(_user_id): Path<u32>) {}
async fn create_user(Json(_payload): Json<Value>) -> (StatusCode, Json<Value>) {
(StatusCode::CREATED, Json(json!({"status": "ok"})))
}
// ----------------------------------------------------------------------------
#[tokio::main]
async fn main() {
let trace_layer = ServiceBuilder::new().layer(TraceLayer::new_for_http());
let app = axum_routes::router!(MyApp,
custom_api = #move |route| {
route.layer(trace_layer.clone())
},
);
// run the app
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
axum::serve(listener, app).await.unwrap();
}
See a bug ? An improvement ? A new feature you want ? Feel free to open an issue, or even a PR.
This project is not affiliated with axum
at all.