auth-framework 0.4.0

A comprehensive, production-ready authentication and authorization framework for Rust applications
1
2
3
4
5
6
7
8
// Simple test to verify module structure is working
use auth_framework::{auth::Auth, errors::AuthError, server::jwt_access_tokens};

fn main() {
    println!("Module structure test passed!");
    println!("Auth module: {:?}", std::any::type_name::<Auth>());
    println!("AuthError module: {:?}", std::any::type_name::<AuthError>());
}