package models
type FileUpload struct {
TaskID string
FileName string
}
type ErrResponse struct {
Message string `json:"message"`
Code int `json:"code"`
type Task struct {
TaskID string `json:"task_id"`
Link string `json:"link"`