(prefix, rawurl, key string, def bool)
| 52 | } |
| 53 | |
| 54 | func (c *URLConfig) Bool(prefix, rawurl, key string, def bool) bool { |
| 55 | s, _ := c.Get(prefix, rawurl, key) |
| 56 | return Bool(s, def) |
| 57 | } |
| 58 | |
| 59 | func (c *URLConfig) getAll(prefix, rawurl, key string) []string { |
| 60 | type urlMatch struct { |
no test coverage detected