Fix enum types
This commit is contained in:
parent
29f79d24de
commit
216eb2aab5
@ -40,7 +40,7 @@ type VDI struct {
|
||||
type VDIType int
|
||||
|
||||
const (
|
||||
_ = iota
|
||||
_ VDIType = iota
|
||||
Disk
|
||||
CD
|
||||
Floppy
|
||||
@ -79,7 +79,7 @@ type Task struct {
|
||||
type TaskStatusType int
|
||||
|
||||
const (
|
||||
_ = iota
|
||||
_ TaskStatusType = iota
|
||||
Pending
|
||||
Success
|
||||
Failure
|
||||
|
Loading…
Reference in New Issue
Block a user