15 lines
204 B
Go
15 lines
204 B
Go
package rpc
|
|
|
|
type DiscoveryService struct {
|
|
}
|
|
|
|
func (ds *DiscoveryService) Start(discoveryType string, param interface{}) error {
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ds *DiscoveryService) Stop() error {
|
|
|
|
return nil
|
|
}
|