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;
9
10/*
11Re-export the app factory so the public crate can expose it.
12*/
13pub use factory::NestForgeFactory;