This commit cleans up the internal/config/template to remove code no longer used because of the new configuration.
13 lines
565 B
Go
13 lines
565 B
Go
package passwordx
|
|
|
|
import "github.com/tkw1536/pkglib/password"
|
|
|
|
// Safe is a charset used for generating passwords that can be safely passed without having to be escaped.
|
|
const Safe = password.DefaultCharSet
|
|
|
|
// Printable is a charset that contains all printable ascii characters
|
|
const Printable = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"
|
|
|
|
// Identifier is a charset to be used to generate unique identifiers.
|
|
// These are typically used for snapshots and names.
|
|
const Identifier = password.DefaultCharSet
|