mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
replace pub to pub(crate) for ServiceConfig::new() and add pub for mod ntex::web::stack instead
This commit is contained in:
parent
8cf00fc5a0
commit
fdc1b71e79
2 changed files with 2 additions and 9 deletions
|
@ -68,7 +68,7 @@ pub struct ServiceConfig<Err = DefaultError> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<Err: ErrorRenderer> ServiceConfig<Err> {
|
impl<Err: ErrorRenderer> ServiceConfig<Err> {
|
||||||
pub fn new() -> Self {
|
pub(crate) fn new() -> Self {
|
||||||
Self {
|
Self {
|
||||||
services: Vec::new(),
|
services: Vec::new(),
|
||||||
state: Extensions::new(),
|
state: Extensions::new(),
|
||||||
|
@ -205,11 +205,4 @@ mod tests {
|
||||||
let resp = call_service(&srv, req).await;
|
let resp = call_service(&srv, req).await;
|
||||||
assert_eq!(resp.status(), StatusCode::OK);
|
assert_eq!(resp.status(), StatusCode::OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_new_service_config() {
|
|
||||||
let cfg: ServiceConfig<DefaultError> = ServiceConfig::new();
|
|
||||||
assert!(cfg.services.is_empty());
|
|
||||||
assert!(cfg.external.is_empty());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,7 +82,7 @@ mod route;
|
||||||
mod scope;
|
mod scope;
|
||||||
mod server;
|
mod server;
|
||||||
mod service;
|
mod service;
|
||||||
mod stack;
|
pub mod stack;
|
||||||
pub mod test;
|
pub mod test;
|
||||||
pub mod types;
|
pub mod types;
|
||||||
mod util;
|
mod util;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue