HomeDisk/types/src/auth/login.rs

17 lines
378 B
Rust

//! HTTP `/auth/login` Request and Response types
use serde::{Deserialize, Serialize};
/// HTTP `/auth/login` Request
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Request {
pub username: String,
pub password: String,
}
/// HTTP `/auth/login` Response
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Response {
pub access_token: String,
}