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