inferno-ai 0.10.3

Enterprise AI/ML model runner with automatic updates, real-time monitoring, and multi-interface support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Middleware system for command execution
//!
//! Provides both the base middleware trait and built-in middleware implementations.

// Base middleware trait and stack
pub mod base;
// Built-in middleware implementations
pub mod logging;
pub mod metrics;

// Re-export base types
pub use base::{Middleware, MiddlewareStack};

// Re-export built-in middleware
pub use logging::LoggingMiddleware;
pub use metrics::MetricsMiddleware;