feat: add initial Go+HTMX web project structure

This commit is contained in:
Grail Finder (aider)
2025-05-01 17:07:15 +03:00
commit b3a730b3dd
4 changed files with 58 additions and 0 deletions

8
go.mod Normal file
View File

@ -0,0 +1,8 @@
module myhtmxapp
go 1.21
require (
github.com/go-chi/chi/v5 v5.0.12
github.com/go-chi/render v1.0.3
)