func()

in custard/pkg/config/config.go [58:68]


func (c *Config) Save(file *os.File) error {
	bytes, err := json.MarshalIndent(c, "", "  ")
	if err != nil {
		return err
	}
	_, err = file.Write(bytes)
	if err != nil {
		return err
	}
	return nil
}