portail 2.1.0

Unified proxy/gateway: AI Gateway + MCP Gateway + CDN cache
Documentation
//! Portail Plugins
//!
//! Built-in plugins for portail:
//!
//! - tinyurl: URL shortening
//! - tracer: Request/response E2E tracing
//! - redis_cache: App-level Redis cache
//!
//! Routes:
//! - /tinyurl/* - URL shortening
//! - /traces/*  - Request tracing
//! - /cache/*   - Redis cache

pub mod redis_cache;
pub mod tinyurl;
pub mod tracer;

pub use redis_cache::{CacheStats as RedisStats, RedisCache, RedisCacheConfig};
pub use tinyurl::{TinyUrlConfig, TinyUrlEntry, TinyUrlStore};
pub use tracer::{Trace, TraceBuilder, TraceStore};