Files
gotenberg/internal/pkg/xrand/xrand.go
Julien Neuhart 7bfbda4490 huge refactoring
2019-07-23 13:57:18 +02:00

11 lines
144 B
Go

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