mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
12 lines
197 B
Go
12 lines
197 B
Go
package utils
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func TempFileName(prefix, suffix string) string {
|
|
return filepath.Join(os.TempDir(), prefix+uuid.NewString()+suffix)
|
|
}
|