internal/config/template: Cleanup
This commit cleans up the internal/config/template to remove code no longer used because of the new configuration.
This commit is contained in:
parent
aa3580c248
commit
2edd0f2fe2
7 changed files with 66 additions and 69 deletions
|
|
@ -2,8 +2,12 @@ package passwordx
|
|||
|
||||
import "github.com/tkw1536/pkglib/password"
|
||||
|
||||
// Charset is a Charset safe for usage within the distillery
|
||||
const Charset = password.DefaultCharSet
|
||||
// Safe is a charset used for generating passwords that can be safely passed without having to be escaped.
|
||||
const Safe = password.DefaultCharSet
|
||||
|
||||
// Snapshot is a charset to be used to generate snapshot ids
|
||||
const Snapshot = 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue