1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-01-09 15:27:08 +00:00
talks/2015/06-devnation-golang-good-bad-ugly/ugly1.go

23 lines
236 B
Go
Raw Normal View History

2015-06-11 22:28:27 +00:00
// +build ignore
package main
// START1 OMIT
const (
DeviceCreate TaskType = iota
DeviceReload
DeviceRemove
DeviceRemoveAll
DeviceSuspend
DeviceResume
DeviceInfo
DeviceDeps
)
// STOP1 OMIT
type TaskType int
func main() {
}