| 19 | var interactive = os.Getenv("TEST_INTERACTIVE") == "1" |
| 20 | |
| 21 | type Config struct { |
| 22 | Config *config.Config |
| 23 | Private string |
| 24 | Public string |
| 25 | RegisterFunc func(*HelloKite) error |
| 26 | } |
| 27 | |
| 28 | func (c *Config) Register(hk *HelloKite) error { |
| 29 | if c.RegisterFunc != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected