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

28 lines
446 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
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/mssql"
"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 MSSQL object, and runs the RPC server for the plugin
func Run() error {
dbplugin.ServeMultiplex(mssql.New)
return nil
}