mirror of
https://github.com/Luzifer/vault-openvpn.git
synced 2024-11-14 11:02:45 +00:00
12 lines
153 B
Go
12 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:]))
|
||
|
}
|