10 lines
179 B
Go
10 lines
179 B
Go
package utility
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func GenerateSafeName(category MediaType, ext string) string {
|
|
return uuid.New().String() + "_" + string(category) + ext
|
|
}
|