open-vault/plugins/database/mssql/mssql-database-plugin/main.go
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

28 lines
446 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"log"
"os"
"github.com/hashicorp/vault/plugins/database/mssql"
"github.com/hashicorp/vault/sdk/database/dbplugin/v5"
)
func main() {
err := Run()
if err != nil {
log.Println(err)
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
}