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