This commit is contained in:
speatzle 2024-05-07 18:52:06 +02:00
parent 172bf636d6
commit a040d5d56c
6 changed files with 123 additions and 3 deletions

9
task/task.go Normal file
View file

@ -0,0 +1,9 @@
package task
type Task struct {
ID int `json:"id"`
FileID int `json:"file_id"`
Type int `json:"type"`
Status int `json:"status"`
Log []string `json:"log"`
}