(filename string)
| 279 | } |
| 280 | |
| 281 | func parseFile(filename string) (*Config, error) { |
| 282 | return parseWithDepth(filename, 0) |
| 283 | } |
| 284 | |
| 285 | func parseWithDepth(filename string, depth uint8) (*Config, error) { |
| 286 | b, err := os.ReadFile(filename) |
no test coverage detected