2017-04-05 23:20:31 +00:00
|
|
|
package builtinplugins
|
|
|
|
|
2017-04-06 00:19:29 +00:00
|
|
|
import (
|
|
|
|
"github.com/hashicorp/vault-plugins/database/mysql"
|
|
|
|
"github.com/hashicorp/vault-plugins/database/postgresql"
|
|
|
|
)
|
2017-04-05 23:20:31 +00:00
|
|
|
|
|
|
|
var BuiltinPlugins = map[string]func() error{
|
2017-04-06 00:19:29 +00:00
|
|
|
"mysql-database-plugin": mysql.Run,
|
|
|
|
"postgresql-database-plugin": postgresql.Run,
|
2017-04-05 23:20:31 +00:00
|
|
|
}
|