mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 18:44:26 +00:00
22 lines
473 B
Go
Executable File
22 lines
473 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"go.m3o.com/password"
|
|
)
|
|
|
|
// Generate a strong random password. Use the switches to control which character types are included, defaults to using all of them
|
|
func main() {
|
|
passwordService := password.NewPasswordService(os.Getenv("M3O_API_TOKEN"))
|
|
rsp, err := passwordService.Generate(&password.GenerateRequest{
|
|
Length: 16,
|
|
Lowercase: true,
|
|
Numbers: true,
|
|
Special: false,
|
|
Uppercase: true,
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|