turbomcp-auth 3.0.12

OAuth 2.1 and authentication for TurboMCP with MCP protocol compliance
1
2
3
4
5
6
7
8
9
//! Authentication Providers
//!
//! This module contains various authentication provider implementations.

pub mod api_key;
pub mod oauth2;

pub use api_key::ApiKeyProvider;
pub use oauth2::OAuth2Provider;