mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
add public ServiceConfig::register constructor to support external configuration (#250)
This commit is contained in:
parent
eaec50d8a2
commit
018f493c6e
1 changed files with 20 additions and 0 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue