diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2021-06-19 10:29:39 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2021-06-19 10:29:39 +0900 |
commit | 07e7881d5f1dd913484e3a9fe34710ecbcd3370c (patch) | |
tree | 9b8e0ae3aee4dd69036aa0b37566eeac2e225202 /cmd/vartan/main.go | |
parent | Add driver (diff) | |
download | cotia-07e7881d5f1dd913484e3a9fe34710ecbcd3370c.tar.gz cotia-07e7881d5f1dd913484e3a9fe34710ecbcd3370c.tar.xz |
Add CLI
Diffstat (limited to 'cmd/vartan/main.go')
-rw-r--r-- | cmd/vartan/main.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/vartan/main.go b/cmd/vartan/main.go new file mode 100644 index 0000000..701f02f --- /dev/null +++ b/cmd/vartan/main.go @@ -0,0 +1,12 @@ +package main + +import ( + "os" +) + +func main() { + err := Execute() + if err != nil { + os.Exit(1) + } +} |