feat: setup project structure and dependencies - init Go module, add redis/sqlx deps, docker-compose config, basic project scaffold

This commit is contained in:
2026-08-13 18:54:13 +03:00
parent c78bf00f7a
commit e98950585d
5 changed files with 71 additions and 6 deletions

10
go.mod Normal file
View File

@@ -0,0 +1,10 @@
module trip-planner
go 1.26.4
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-redis/redis/v8 v8.11.5 // indirect
github.com/jmoiron/sqlx v1.4.0 // indirect
)