replace pub to pub(crate) for ServiceConfig::new() and add pub for mod ntex::web::stack instead

This commit is contained in:
DESKTOP-4GPR761\HashTable 2025-03-26 22:00:01 +07:00
parent 8cf00fc5a0
commit fdc1b71e79
2 changed files with 2 additions and 9 deletions

View file

@ -68,7 +68,7 @@ pub struct ServiceConfig<Err = DefaultError> {
}
impl<Err: ErrorRenderer> ServiceConfig<Err> {
pub fn new() -> Self {
pub(crate) fn new() -> Self {
Self {
services: Vec::new(),
state: Extensions::new(),
@ -205,11 +205,4 @@ mod tests {
let resp = call_service(&srv, req).await;
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());
}
}

View file

@ -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;