package features import ( "fmt" "time" ) // GetBackupFilename generates a filename for a backup func GetBackupFilename(timestamp time.Time) string { return fmt.Sprintf("kvs-backup-%s.zstd", timestamp.Format("2006-01-02")) }