| 12345678910111213141516171819202122 |
- package initutils
- import (
- clientv3 "go.etcd.io/etcd/client/v3"
- )
- const (
- RegistryTypeEtcd = "etcd"
- RegistryTypeLocal = "local"
- )
- type Startup struct {
- Name string
- Version string
- FlagConf string
- Group string
- Namespace string
- ConfigSource string
- RegistryType string
- EctdClient *clientv3.Client
- Cleanup func()
- }
|