//! Shared authentication primitives for klieo HTTP transports.
//!
//! [`Authenticator`] is the server-side auth port. Both `klieo-a2a` and
//! `klieo-mcp-server` consume it via `Arc<dyn Authenticator>`. Concrete
//! implementations live in `klieo-auth-oauth` (JWT/JWKS) and here
//! ([`AllowAnonymous`], [`BearerTokenAuthenticator`]).
pub use Authenticator;
pub use AuthError;
pub use Headers;
pub use ;
pub use ;
pub use AllowAnonymous;