mirror of
https://github.com/Luzifer/vault-openvpn.git
synced 2024-11-14 02:52:44 +00:00
11 lines
153 B
Go
11 lines
153 B
Go
package main // import "github.com/hashicorp/vault"
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/cli"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(cli.Run(os.Args[1:]))
|
|
}
|