mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 15:47:00 +02:00
24 lines
385 B
Go
24 lines
385 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/plugins/database/redshift"
|
|
"github.com/hashicorp/vault/sdk/database/dbplugin/v5"
|
|
)
|
|
|
|
func main() {
|
|
if err := Run(); err != nil {
|
|
log.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// Run instantiates a RedShift object, and runs the RPC server for the plugin
|
|
func Run() error {
|
|
dbplugin.ServeMultiplex(redshift.New)
|
|
|
|
return nil
|
|
}
|