Display the list of users

This commit is contained in:
2022-04-06 18:03:00 +02:00
parent da6a494875
commit 754814f04a
6 changed files with 76 additions and 3 deletions

View File

@ -8,7 +8,7 @@ pub type UserID = String;
pub struct User {
pub uid: UserID,
pub first_name: String,
pub last_last: String,
pub last_name: String,
pub username: String,
pub email: String,
pub password: String,
@ -40,7 +40,7 @@ impl Default for User {
Self {
uid: uuid::Uuid::new_v4().to_string(),
first_name: "".to_string(),
last_last: "".to_string(),
last_name: "".to_string(),
username: "".to_string(),
email: "".to_string(),
password: "".to_string(),