hyperapi 0.2.2

An easy to use API Gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod service;
mod authenticator;
mod jwt;
mod app_key;
mod no_auth;

pub use authenticator::{AuthProvider, ServiceAuthInfo, AuthRequest, AuthResponse, AuthResult, GatewayAuthError};
pub use service::AuthService;
pub use app_key::AppKeyAuthProvider;
pub use jwt::JWTAuthProvider;
pub use no_auth::NoAuthProvider;