lxy 0.1.1

A convenient async http and RPC framework in Rust
Documentation
#![cfg_attr(clippy, deny(warnings))]
#[macro_use]
pub(crate) mod macros;

pub mod app;
pub mod app_builder;
pub mod config;
pub mod container;
#[cfg(feature = "request-context")]
pub mod context;
pub mod error;
pub mod server;
#[cfg(feature = "otel")]
pub mod telemetry;
pub mod tracing;
pub mod utils;

#[cfg(feature = "http")]
pub mod http;

#[cfg(feature = "grpc")]
pub mod grpc;

pub use app::{App, get_app};
pub use app_builder::AppBuilder;
pub use error::{Error, ErrorCode, Result};