mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 03:15:42 +03:00
9 lines
156 B
Go
9 lines
156 B
Go
package main // import "github.com/hashicorp/consul-template"
|
|
|
|
import "os"
|
|
|
|
func main() {
|
|
cli := NewCLI(os.Stdout, os.Stderr)
|
|
os.Exit(cli.Run(os.Args))
|
|
}
|