1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-01-14 17:30:08 +00:00
talks/2015/06-devnation-golang-good-bad-ugly/marshal_ugly.go

13 lines
116 B
Go
Raw Normal View History

2015-06-24 22:06:11 +00:00
// +build OMIT
package main
// START1 OMIT
type Namer interface {
Name() string
}
// STOP1 OMIT
func main() {
}