CUB-112: scaffold Go backend with Chi, pgx, health check
Some checks failed
Dev Build / build-test (pull_request) Failing after 1m39s

This commit is contained in:
dex-bot
2026-05-06 12:20:31 -04:00
parent 42285c5dac
commit 3fe0850711
9 changed files with 261 additions and 29 deletions

9
backend/go.mod Normal file
View File

@@ -0,0 +1,9 @@
module github.com/CubeCraft-Creations/Extrudex/backend
go 1.24
require (
github.com/go-chi/chi/v5 v5.2.0
github.com/jackc/pgx/v5 v5.7.4
github.com/kelseyhightower/envconfig v1.4.0
)