commit dcf8c9eba0286c53fef5d9b634ebe01e141d57c9 Author: juancwu <46619361+juancwu@users.noreply.github.com> Date: Sun Jan 11 16:43:30 2026 -0500 init gosh project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d26ae6b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.env +.env.* +data/ diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1c84e45 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.juancwu.dev/juancwu/gosh + +go 1.25.1 diff --git a/main.go b/main.go new file mode 100644 index 0000000..7043b48 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("gosh init") +}