fix: remove unsused structs

This commit is contained in:
Sebastian Pravda 2022-11-30 15:18:52 +01:00
parent 19e1f5a3e1
commit 4a9d478e8c
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57
2 changed files with 0 additions and 7 deletions

View file

@ -21,10 +21,4 @@ pub struct RegisterRequest {
pub struct AdminLoginRequest {
pub admin_id: i32,
pub password: String,
}
#[derive(Serialize, Deserialize)]
#[serde(crate = "rocket::serde")]
pub struct PasswordRequest {
pub password: String,
}

View file

@ -7,6 +7,5 @@ pub mod database;
pub mod crypto;
pub mod services;
pub mod error;
pub mod responses;
pub mod utils;
pub mod models;