talks/2015/06-devnation-golang-good-ba.../ugly1.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() {
}