Versions in this module Expand all Collapse all v0 v0.2.0 Jun 2, 2023 Changes in this version + type File struct + Context string + CreatedAt time.Time + Id uuid.UUID + MimeType string + OriginFilename string + Size uint + func NewFile(context string, filename string, mimeType string, size uint) File + type InterfaceFileInteractor interface + Delete func(id uuid.UUID) error + Get func(id uuid.UUID) (*dto.File, error) + Save func(contextName string, filename string, file multipart.File) (*dto.File, error) + type InterfaceFileRepository interface + Delete func(uuid.UUID) error + Get func(uuid.UUID) (File, error) + Save func(File) error