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,
|
|
}
|