file_system/internal/api/handlers/upload_file_command.go
2025-12-18 09:34:49 +08:00

10 lines
125 B
Go

package handlers
import "io"
type UploadFileCommand struct {
BucketName string
FileName string
Data io.Reader
}