mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-08 23:42:53 +01:00
13 lines
266 B
Go
13 lines
266 B
Go
|
package apg
|
||
|
|
||
|
// Generator is the password generator type of the APG package
|
||
|
type Generator struct {
|
||
|
// charRange is the range of character used for the
|
||
|
charRange string
|
||
|
}
|
||
|
|
||
|
// New returns a new password Generator type
|
||
|
func New() *Generator {
|
||
|
return &Generator{}
|
||
|
}
|