This commit is contained in:
2026-07-29 17:41:52 +02:00
parent 98050bb770
commit 6cb9acf98b
38 changed files with 55 additions and 52 deletions
-10
View File
@@ -1,10 +0,0 @@
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct CreateAttachmentRequest {}
#[derive(Debug, Serialize, Deserialize)]
pub struct UpdateAttachmentRequest {}
#[derive(Debug, Serialize, Deserialize)]
pub struct AttachmentResponse {}
+2 -1
View File
@@ -1,4 +1,5 @@
use super::{domain::Attachment, dto::AttachmentResponse};
use super::domain::Attachment;
use crate::domain::dto::attachment::AttachmentResponse;
pub fn to_response(_item: Attachment) -> AttachmentResponse {
todo!()
-1
View File
@@ -1,5 +1,4 @@
pub mod domain;
pub mod dto;
pub mod handlers;
pub mod mapper;
pub mod routes;