mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

* feat: added license manager and feature flags * feat: completed org domain api * chore: checking in saml auth handler code * feat: added signup with sso * feat: added login support for admins * feat: added pem support for certificate * ci(build-workflow): 👷 include EE query-service * fix: 🐛 update package name * chore(ee): 🔧 LD_FLAGS related changes Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: nityanandagohain <nityanandagohain@gmail.com>
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
|
|
}
|