chore: change task.ID to uint64

This commit is contained in:
Noah Hsu
2022-06-17 21:52:31 +08:00
parent d73a9e4734
commit 68ca2abd0c
2 changed files with 19 additions and 18 deletions

View File

@ -17,7 +17,7 @@ var (
type Func func(task *Task) error
type Task struct {
ID int64
ID uint64
Name string
Status string
Error error