auths_core/server.rs
1//! HTTP server for agent signing (not yet implemented).
2//!
3//! This module will provide an HTTP endpoint for remote signing requests,
4//! complementing the Unix socket-based SSH agent protocol.
5//!
6//! Planned endpoints:
7//! - `POST /sign` — sign a message using a loaded key
8//!
9//! Depends on: a production-ready async HTTP library (e.g., axum).