acid 0.0.1

API for acidarchive.com
Documentation
1
2
3
4
5
6
7
8
9
use crate::domain::users::{user_email::UserEmail, user_name::UserName};
use uuid::Uuid;

#[derive(Debug)]
pub struct User {
    pub user_id: Uuid,
    pub username: UserName,
    pub email: UserEmail,
}