From c1cccd7f1f226a625d08421ff6061ca1c69fdb9f Mon Sep 17 00:00:00 2001 From: b3t0 Date: Thu, 22 Feb 2024 09:40:41 -0600 Subject: [PATCH] basic setup --- .gitignore | 2 ++ go.mod | 3 +++ main.go | 7 +++++++ 3 files changed, 12 insertions(+) create mode 100644 go.mod create mode 100644 main.go 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") +}