Add cassandra plugin

This commit is contained in:
Calvin Leung Huang
2017-04-23 09:02:57 +08:00
parent 3ceb7b69e1
commit c5d5abef11
5 changed files with 1537 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
"github.com/hashicorp/vault/plugins/database/cassandra"
)
func main() {
err := cassandra.Run()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}