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

31 lines
521 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
2017-04-13 16:48:32 -04:00
package main
import (
"log"
2017-04-13 16:48:32 -04:00
"os"
"github.com/hashicorp/vault/plugins/database/mysql"
"github.com/hashicorp/vault/sdk/database/dbplugin/v5"
2017-04-13 16:48:32 -04:00
)
func main() {
err := Run()
2017-04-13 16:48:32 -04:00
if err != nil {
log.Println(err)
2017-04-13 16:48:32 -04: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
}