diff --git a/.gitignore b/.gitignore index 9c736a0..8301c7b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ *.dll *.so *.dylib -gitauto +/gitauto # Test binary, built with `go test -c` *.test diff --git a/cmd/gitauto/main.go b/cmd/gitauto/main.go new file mode 100644 index 0000000..e84c91a --- /dev/null +++ b/cmd/gitauto/main.go @@ -0,0 +1,7 @@ +package main + +import "github.com/iwasforcedtobehere/git-automation-cli/internal/cmd" + +func main() { + cmd.Execute() +}