mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02:00
12 lines
284 B
Go
12 lines
284 B
Go
package builtinplugins
|
|
|
|
import (
|
|
"github.com/hashicorp/vault-plugins/database/mysql"
|
|
"github.com/hashicorp/vault-plugins/database/postgresql"
|
|
)
|
|
|
|
var BuiltinPlugins = map[string]func() error{
|
|
"mysql-database-plugin": mysql.Run,
|
|
"postgresql-database-plugin": postgresql.Run,
|
|
}
|