diff --git a/.gitignore b/.gitignore index adf8f72..4e1b396 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # ---> Go # If you prefer the allow list template instead of the deny list, see community template: # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# Manual +*htmx # # Binaries for programs and plugins *.exe diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..5e4c62a --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitea.sitodosi.com/betology/htmx + +go 1.21.6 diff --git a/main.go b/main.go new file mode 100644 index 0000000..c048119 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("hello world") +}