Files
certctl/go.mod
T
shankar0123 cecf3e07ef Fix go.mod: downgrade from non-existent Go 1.25 to Go 1.22
go.mod was set to go 1.25.0 which doesn't exist yet, causing Docker
builds to fail with "go.mod requires go >= 1.25.0 (running go 1.22.12)".
The project uses Go 1.22 as documented in Dockerfiles, CI, and README.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 15:03:00 -04:00

11 lines
157 B
Modula-2

module github.com/shankar0123/certctl
go 1.22.0
require (
github.com/google/uuid v1.6.0
github.com/lib/pq v1.10.9
)
require golang.org/x/crypto v0.49.0