mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
21 lines
357 B
Markdown
21 lines
357 B
Markdown
|
|
# livezk
|
||
|
|
|
||
|
|
直播 zookeeper 注册工具
|
||
|
|
|
||
|
|
### usage
|
||
|
|
|
||
|
|
```go
|
||
|
|
import (
|
||
|
|
"go-common/conf"
|
||
|
|
"go-common/business/warden/livezk"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
config := &conf.Zookeeper{/*...*/}
|
||
|
|
addr := ":5000" // grpc 监听的端口
|
||
|
|
appID := "test.test" // app_id
|
||
|
|
// 注册失败每隔1分钟会自动重试
|
||
|
|
live.DoRegister(config, addr, appID)
|
||
|
|
}
|
||
|
|
```
|