Skip to main content

nestforge_http/
lib.rs

1/*!
2This crate wraps the actual HTTP server setup (axum + tokio stuff).
3
4Goal:
5Hide Rust web setup complexity from the NestForge user.
6*/
7
8pub mod factory;
9pub mod middleware;
10
11/*
12Re-export the app factory so the public crate can expose it.
13*/
14pub use factory::NestForgeFactory;
15pub use middleware::{MiddlewareConsumer, MiddlewareRoute, NestMiddleware};