diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2021-05-08 19:44:17 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2021-05-08 19:44:17 +0900 |
commit | 7e9f616639c29436ab66cc08c70028beded2877d (patch) | |
tree | c5f2f2823336c36e76bc4deb666a33e1f26ce1ea /cmd/maleeni/main.go | |
parent | Add --break-on-error option to lex command (diff) | |
download | tre-7e9f616639c29436ab66cc08c70028beded2877d.tar.gz tre-7e9f616639c29436ab66cc08c70028beded2877d.tar.xz |
Change package structure
The executable can be installed using `go install ./cmd/maleeni`.
Diffstat (limited to 'cmd/maleeni/main.go')
-rw-r--r-- | cmd/maleeni/main.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/maleeni/main.go b/cmd/maleeni/main.go new file mode 100644 index 0000000..701f02f --- /dev/null +++ b/cmd/maleeni/main.go @@ -0,0 +1,12 @@ +package main + +import ( + "os" +) + +func main() { + err := Execute() + if err != nil { + os.Exit(1) + } +} |