AllowUnknown makes config.Map skip unknown configuration directives instead of failing.
()
| 72 | // AllowUnknown makes config.Map skip unknown configuration directives instead |
| 73 | // of failing. |
| 74 | func (m *Map) AllowUnknown() { |
| 75 | m.allowUnknown = true |
| 76 | } |
| 77 | |
| 78 | // EnumList maps a configuration directive to a []string variable. |
| 79 | // |
no outgoing calls