mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03: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:]))
|
|
}
|