9 lines
324 B
Go
9 lines
324 B
Go
// Package secret implements secret storage providers.
|
|
//
|
|
// # Providers
|
|
//
|
|
// Providers of secrets accept a string as key and return a byte slice as result
|
|
// for the secret. It is up to the consumers of this package how to interpret
|
|
// the bytes. In most cases, the byte slice can be converted to a string.
|
|
package secret
|