feat(skel): add go module definition

Initial module at git.fabledsword.com/bvandeusen/minstrel pinned to go
1.23.0 to match the runner-base:go-ci image. Dependencies kept minimal
(chi router, yaml.v3) so CI's first run is fast and contained.
This commit is contained in:
2026-04-18 21:19:17 +00:00
parent 8b9f57128a
commit 417e3d05dd
+8
View File
@@ -0,0 +1,8 @@
module git.fabledsword.com/bvandeusen/minstrel
go 1.23.0
require (
github.com/go-chi/chi/v5 v5.2.5
gopkg.in/yaml.v3 v3.0.1
)