Parser represents a configuration format parser.
| 15 | |
| 16 | // Parser represents a configuration format parser. |
| 17 | type Parser interface { |
| 18 | Unmarshal([]byte) (map[string]any, error) |
| 19 | Marshal(map[string]any) ([]byte, error) |
| 20 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…