acd4241740
This centralizes all command-related things in the command package
12 lines
161 B
Go
12 lines
161 B
Go
package main // import "github.com/hashicorp/vault"
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/command"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(command.Run(os.Args[1:]))
|
|
}
|