overflow_discovery/_discovery/port.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 portDiscoverer interface {
commons.EndableStarter
commons.Shutdowner
}
type portDiscovery struct {
}
func newPortDiscoverer() portDiscoverer {
pd := &portDiscovery{}
return pd
}
func (pd *portDiscovery) EndableStart(endded chan<- error) error {
return nil
}
func (pd *portDiscovery) Shutdown(ctx context.Context) error {
return nil
}