| 86 | } |
| 87 | |
| 88 | type HelloKite struct { |
| 89 | Kite *kite.Kite |
| 90 | URL *url.URL |
| 91 | Token bool |
| 92 | |
| 93 | clients map[string]*kite.Client |
| 94 | regs chan *protocol.RegisterResult |
| 95 | toks chan struct{} |
| 96 | renew chan struct{} |
| 97 | } |
| 98 | |
| 99 | func NewHelloKite(name string, conf *Config) (*HelloKite, error) { |
| 100 | k := kite.New(name, "1.0.0") |
nothing calls this directly
no outgoing calls
no test coverage detected