1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2024-11-16 05:28:37 +00:00
talks/2016/12-intro-to-golang/ugly1.go

22 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() {
}