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 /cli/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 'cli/main.go')
-rw-r--r-- | cli/main.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/main.go b/cli/main.go deleted file mode 100644 index 24973e7..0000000 --- a/cli/main.go +++ /dev/null @@ -1,14 +0,0 @@ -package main - -import ( - "os" - - "github.com/nihei9/maleeni/cli/cmd" -) - -func main() { - err := cmd.Execute() - if err != nil { - os.Exit(1) - } -} |