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