praxis-proxy-core 0.4.0

Configuration, error types, and server factory for Praxis
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MIT
// Copyright (c) 2024 Praxis Contributors

//! 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;