overflow_discovery/rpc/discovery_service.go

15 lines
204 B
Go
Raw Normal View History

2017-10-27 06:01:09 +00:00
package rpc
type DiscoveryService struct {
}
2017-11-15 10:38:42 +00:00
func (ds *DiscoveryService) Start(discoveryType string, param interface{}) error {
2017-10-27 06:01:09 +00:00
2017-11-15 10:38:42 +00:00
return nil
2017-11-02 06:43:42 +00:00
}
2017-11-15 10:38:42 +00:00
func (ds *DiscoveryService) Stop() error {
2017-11-02 06:43:42 +00:00
2017-11-15 10:38:42 +00:00
return nil
2017-10-27 06:01:09 +00:00
}