Skip to content

Commit 7252cec

Browse files
committed
fix: missing cli file again
1 parent 30db18e commit 7252cec

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

packages/r/intermarch3/goo-cli/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Binaries
22
build/
3-
goo
43
*.exe
54
*.exe~
65
*.dll
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package main
2+
3+
import (
4+
"os"
5+
6+
"goo-cli/internal/commands"
7+
)
8+
9+
func main() {
10+
if err := commands.Execute(); err != nil {
11+
os.Exit(1)
12+
}
13+
}

0 commit comments

Comments
 (0)