go-zero/example/etcd/pub/pub.go

28 lines
392 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package main
import (
"flag"
"fmt"
"log"
"time"
"zero/core/discov"
)
var value = flag.String("v", "value", "the value")
func main() {
flag.Parse()
client := discov.NewPublisher([]string{"etcd.discovery:2379"}, "028F2C35852D", *value)
if err := client.KeepAlive(); err != nil {
log.Fatal(err)
}
defer client.Stop()
for {
time.Sleep(time.Second)
fmt.Println(*value)
}
}