func fileExists()

in custard/pkg/config/utils.go [43:48]


func fileExists(path string) bool {
	if _, err := os.Stat(path); errors.Is(err, os.ErrNotExist) {
		return false
	}
	return true
}