From 728ab919a35c7873b2e2d9446a38c6fbc4f15f66 Mon Sep 17 00:00:00 2001 From: Ruangyot Nanchiang Date: Fri, 28 Mar 2025 04:12:34 +0700 Subject: [PATCH] Expose WebStack for external wrapper support in downstream crates (#542) * add public ServiceConfig::register constructor to support external configuration (#250) * fix: doctest ServiceConfig::register() error (#250) * add unit testing for ServiceConfig::register() * replace pub(crate) to pub in ServiceConfig::new() (#250) * replace pub to pub(crate) for ServiceConfig::new() and add pub for mod ntex::web::stack instead * remove unsed DefaultError import in config.rs tests --------- Co-authored-by: RuangyotN --- ntex/src/web/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntex/src/web/mod.rs b/ntex/src/web/mod.rs index 6c3d37b1..8d9adf4d 100644 --- a/ntex/src/web/mod.rs +++ b/ntex/src/web/mod.rs @@ -82,7 +82,7 @@ mod route; mod scope; mod server; mod service; -mod stack; +pub mod stack; pub mod test; pub mod types; mod util;