feat: replace std log with cylogger, add flag-based init, enhance logs,

update Go version and deps, and streamline Docker build/deploy scripts
This commit is contained in:
2025-08-07 10:31:28 +02:00
parent 862f95f730
commit 37b08d27f5
5 changed files with 104 additions and 50 deletions

18
go.mod
View File

@@ -1,7 +1,19 @@
module main
go 1.21.6
go 1.23.6
require github.com/djherbis/times v1.6.0
require (
git.site.quack-lab.dev/dave/cylogger v1.3.0
git.site.quack-lab.dev/dave/cyutils v1.1.3
github.com/djherbis/times v1.6.0
)
require golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c // indirect
require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/hexops/valast v1.5.0 // indirect
golang.org/x/mod v0.7.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/time v0.12.0 // indirect
golang.org/x/tools v0.4.0 // indirect
mvdan.cc/gofumpt v0.4.0 // indirect
)