func load(path string) []byte { b, _ := os.ReadFile(path) return b } func parse(b []byte) Config { var c Config json.Unmarshal(b, &c) return c }