Path is a dotted path of keys to a value in a nested mapping structure. A * section in a path will match any key in the mapping structure.
| 124 | // Path is a dotted path of keys to a value in a nested mapping structure. A * |
| 125 | // section in a path will match any key in the mapping structure. |
| 126 | type Path string |
| 127 | |
| 128 | // NewPath returns a new Path |
| 129 | func NewPath(items ...string) Path { |