All checks were successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
14 lines
308 B
Go
14 lines
308 B
Go
package keymanager
|
|
|
|
import "github.com/tech/sendico/pkg/model"
|
|
|
|
// Driver identifies the key management backend implementation.
|
|
type Driver string
|
|
|
|
const (
|
|
DriverVault Driver = "vault"
|
|
)
|
|
|
|
// Config represents a configured key manager driver with arbitrary settings.
|
|
type Config = model.DriverConfig[Driver]
|