Closed clagraff closed 7 years ago
I would suggest switching the Namespace struct from:
Namespace
type Namespace struct { Mapping map[string]interface{} }
to the more simple structure of:
type Namespace map[string]interface{}
as there is no real usage for having an extra layer between the user and the parsed data.
Gonna take this one on.
I would suggest switching the
Namespace
struct from:to the more simple structure of:
as there is no real usage for having an extra layer between the user and the parsed data.