()
| 224 | } |
| 225 | |
| 226 | func (hl *handlerLoader) setupAll() { |
| 227 | for prefix := range hl.config { |
| 228 | hl.setupHandler(prefix) |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | func (hl *handlerLoader) configType(prefix string) string { |
| 233 | if h, ok := hl.config[prefix]; ok { |
no test coverage detected