This repository has been archived on 2023-07-04. You can view files and clone it, but cannot push or open issues/pull-requests.
gateway-old/src/auth/mod.rs

12 lines
155 B
Rust

use serde::Deserialize;
pub mod jwt;
pub mod pass;
#[derive(Deserialize)]
pub struct Credentials
{
pub username: String,
pub password: String,
}