From 417e3d05dd4ee549b0779db510b86d084b2a9492 Mon Sep 17 00:00:00 2001 From: bvandeusen Date: Sat, 18 Apr 2026 21:19:17 +0000 Subject: [PATCH] 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. --- go.mod | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..ed209b7d --- /dev/null +++ b/go.mod @@ -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 +)