Files
gotenberg/internal/pkg/random/random.go
2019-07-07 17:45:07 +02:00

11 lines
145 B
Go

package random
import (
"github.com/labstack/gommon/random"
)
// Get returns a random string.
func Get() string {
return random.String(32)
}