1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: LGPL-3.0-only // Copyright (c) 2024 Shane Utt //! Server factory and lifecycle management. /// Pingora-specific server factory and runtime. pub mod pingora; mod runtime; pub use pingora::{PingoraServerRuntime, build_http_server}; pub use runtime::RuntimeOptions;