mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
11 lines
174 B
Go
11 lines
174 B
Go
|
|
package utils
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/sethvargo/go-password/password"
|
||
|
|
)
|
||
|
|
|
||
|
|
func GeneratePassowrd() string {
|
||
|
|
res, _ := password.Generate(64, 10, 10, false, false)
|
||
|
|
return res
|
||
|
|
}
|