Skip to main content

nestforge_http/
lib.rs

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