mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
11 lines
145 B
Go
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)
|
|
}
|