overflow_discovery/discovery.go

14 lines
133 B
Go
Raw Normal View History

2017-10-20 05:28:07 +00:00
package discovery
type Discoverer interface {
}
type discovery struct {
}
func New() Discoverer {
d := &discovery{}
return d
}