cleanup file structure, dockerize app

This commit is contained in:
KS Jannette
2026-05-19 03:37:56 -04:00
parent 4042ba87f5
commit 8cfde57cab
18 changed files with 262 additions and 98 deletions

24
go.mod Normal file
View File

@@ -0,0 +1,24 @@
module github.com/kjannette/go_http_server
go 1.25.0
require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/labstack/echo/v4 v4.15.2
github.com/pkg/errors v0.9.1
go.uber.org/zap v1.28.0
golang.org/x/sync v0.20.0
)
require (
github.com/labstack/gommon v0.5.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.22 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/crypto v0.50.0 // indirect
golang.org/x/net v0.53.0 // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.36.0 // indirect
)