overflow_discovery/_discovery/host.go

32 lines
449 B
Go
Raw Normal View History

2017-10-20 05:28:07 +00:00
package discovery
import (
"context"
"git.loafle.net/overflow/overflow_discovery/commons"
)
type hostDiscoverer interface {
commons.EndableStarter
commons.Shutdowner
}
type hostDiscovery struct {
}
func newHostDiscoverer() hostDiscoverer {
hd := &hostDiscovery{}
return hd
}
func (hd *hostDiscovery) EndableStart(endded chan<- error) error {
return nil
}
func (hd *hostDiscovery) Shutdown(ctx context.Context) error {
return nil
}