open-vault/plugins/database/mysql/mysql-database-plugin/main.go

28 lines
450 B
Go
Raw Normal View History

2017-04-13 20:48:32 +00:00
package main
import (
"log"
2017-04-13 20:48:32 +00:00
"os"
"github.com/hashicorp/vault/plugins/database/mysql"
"github.com/hashicorp/vault/sdk/database/dbplugin/v5"
2017-04-13 20:48:32 +00:00
)
func main() {
err := Run()
2017-04-13 20:48:32 +00:00
if err != nil {
log.Println(err)
2017-04-13 20:48:32 +00:00
os.Exit(1)
}
}
// Run instantiates a MySQL object, and runs the RPC server for the plugin
func Run() error {
var f func() (interface{}, error)
f = mysql.New(mysql.DefaultUserNameTemplate)
dbplugin.ServeMultiplex(f)
return nil
}