1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2024-10-31 22:26:44 +00:00
talks/2015/06-devnation-golang-good-bad-ugly/marshal_ugly.go

12 lines
116 B
Go

// +build OMIT
package main
// START1 OMIT
type Namer interface {
Name() string
}
// STOP1 OMIT
func main() {
}