Files
2026-07-13 12:27:58 +08:00

10 lines
248 B
Go

//go:build !darwin && !windows
package fsutil
// NormalizeSecretName returns the secret name unchanged.
// On case-sensitive filesystems (Linux and others) no normalization is needed.
func NormalizeSecretName(name string) string {
return name
}