vornix-core 0.1.0

Librería de utilidades para microservicios en Rust, incluyendo conexión asincrónica a bases de datos, manejo de respuestas y más.
Documentation
1
2
3
4
5
6
7
pub struct GoogleAuth;

impl GoogleAuth {
    pub fn authenticate(token: &str) -> Result<User, AuthError> {
        // Lógica para autenticar con Google usando `token`
    }
}