mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-07 23:27:01 +02:00
17 lines
181 B
Go
17 lines
181 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/plugins/database/mssql"
|
|
)
|
|
|
|
func main() {
|
|
err := mssql.Run()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|