fix: remove low file code from domain

This commit is contained in:
Floriansylvain
2025-12-22 02:41:09 +01:00
parent 76245c47c9
commit ce787d26ff
5 changed files with 26 additions and 18 deletions
+8
View File
@@ -1,9 +1,17 @@
package image
import (
"io"
"time"
)
type ImageInput struct {
Content io.Reader
Filename string
Size int64
ContentType string
}
type Image struct {
ID uint32 `json:"id"`
Path string `json:"path"`