task wip
This commit is contained in:
parent
172bf636d6
commit
a040d5d56c
6 changed files with 123 additions and 3 deletions
9
task/task.go
Normal file
9
task/task.go
Normal 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"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue