13 lines
143 B
Go
13 lines
143 B
Go
|
package rpc
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
type DiscoveryService struct {
|
||
|
}
|
||
|
|
||
|
func (ds *DiscoveryService) Start() {
|
||
|
log.Print("DiscoveryService.Start")
|
||
|
}
|