Initial import

This commit is contained in:
2025-09-04 14:14:02 +02:00
commit ac609a54c2
19 changed files with 1228 additions and 0 deletions

8
doc.go Normal file
View File

@@ -0,0 +1,8 @@
// 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