package config import "os" func writeFileImpl(path string, body []byte) error { return os.WriteFile(path, body, 0o600) }