mirror of
https://github.com/vbatts/talks.git
synced 2024-12-28 01:26:33 +00:00
23 lines
236 B
Go
23 lines
236 B
Go
|
// +build ignore
|
||
|
|
||
|
package main
|
||
|
|
||
|
// START1 OMIT
|
||
|
const (
|
||
|
DeviceCreate TaskType = iota
|
||
|
DeviceReload
|
||
|
DeviceRemove
|
||
|
DeviceRemoveAll
|
||
|
DeviceSuspend
|
||
|
DeviceResume
|
||
|
DeviceInfo
|
||
|
DeviceDeps
|
||
|
)
|
||
|
|
||
|
// STOP1 OMIT
|
||
|
|
||
|
type TaskType int
|
||
|
|
||
|
func main() {
|
||
|
}
|