feat: add cargo

This commit is contained in:
Maulana Sodiqin
2025-02-26 15:45:05 +07:00
parent b8606ef0bb
commit 8b2769706e
7 changed files with 125 additions and 23 deletions
View File
+3
View File
@@ -0,0 +1,3 @@
pub mod users_dto;
pub use users_dto::*;
+8
View File
@@ -0,0 +1,8 @@
use serde::{Deserialize, Serialize};
use utoipa::ToSchema;
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
pub struct UsersItemDto {
pub email: String,
pub fullname: String,
}