nntp_proxy/command/mod.rs
1//! Command processing module
2//!
3//! This module handles NNTP command classification and processing.
4//! It provides a clean abstraction for parsing and validating commands
5//! without coupling to the proxy implementation.
6
7mod classifier;
8mod handler;
9
10pub use classifier::NntpCommand;
11pub use handler::{AuthAction, CommandAction, CommandHandler};