add public ServiceConfig::register constructor to support external configuration (#250)

This commit is contained in:
RuangyotN 2025-03-24 10:23:20 +07:00
parent eaec50d8a2
commit 018f493c6e

View file

@ -124,6 +124,26 @@ impl<Err: ErrorRenderer> ServiceConfig<Err> {
self.external.push(rdef);
self
}
/// Creates a new instance of [`ServiceConfig`] for use in custom application configurations.
///
/// This is an alternative constructor to [`ServiceConfig::new()`], intended for
/// external crates and libraries that require access to [`ServiceConfig`] outside the crate scope.
///
/// # Examples
///
/// ```rust
/// use ntex::web::ServiceConfig;
///
/// let config = ServiceConfig::register();
/// ```
pub fn register() -> Self {
Self {
services: Vec::new(),
state: Extensions::new(),
external: Vec::new(),
}
}
}
#[cfg(test)]