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

17 lines
191 B
Go
Raw Normal View History

2017-04-13 16:48:32 -04:00
package main
import (
"fmt"
"os"
"github.com/hashicorp/vault/plugins/database/postgresql"
)
func main() {
err := postgresql.Run()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}