ing
This commit is contained in:
parent
d762e69015
commit
f1fac395d5
|
@ -1,9 +1,28 @@
|
||||||
package rpc
|
package rpc
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.loafle.net/overflow/overflow_discovery/api/module/discovery/model"
|
||||||
|
)
|
||||||
|
|
||||||
type DiscoveryService struct {
|
type DiscoveryService struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ds *DiscoveryService) Start(discoveryType string, param interface{}) error {
|
func (ds *DiscoveryService) DiscoverZone(dz *model.DiscoveryZone) error {
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DiscoveryService) DiscoverHost(dz *model.DiscoveryHost) error {
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DiscoveryService) DiscoverPort(dz *model.DiscoveryPort) error {
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DiscoveryService) DiscoverService(dz *model.DiscoveryService) error {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user