- Fix trailing whitespace in kex.rs and s3.rs - Add missing KexProposal import in kex_complete.rs - Auto-fix clippy warnings across all crates - All 153 tests pass
13 lines
391 B
Rust
13 lines
391 B
Rust
pub mod handlers;
|
|
|
|
// API Module - Future Modular Architecture
|
|
//
|
|
// This module provides the structure for modular API handlers.
|
|
// Current implementation remains in server.rs for stability.
|
|
//
|
|
// Benefits of this architecture:
|
|
// - Clear separation of concerns
|
|
// - Easier maintenance for new features
|
|
// - Gradual migration path from server.rs
|
|
// - Independent testing per handler module
|