feat (minio): done, upload wip
This commit is contained in:
No files matched your search
@@ -0,0 +1,16 @@
|
||||
package uploadhelper
|
||||
|
||||
type UploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Message string `json:"message"`
|
||||
URL string `json:"url,omitempty"`
|
||||
FileName string `json:"filename,omitempty"`
|
||||
}
|
||||
|
||||
type MultipleUploadResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Message string `json:"message"`
|
||||
TotalFiles int `json:"total_files"`
|
||||
SuccessCount int `json:"success_count"`
|
||||
Results []UploadResponse `json:"results"`
|
||||
}
|
||||
Reference in New Issue
Block a user