feat: Initialize Go backend module with dependencies and configure Docker build to use GOTOOLCHAIN=auto.

This commit is contained in:
2026-01-30 07:46:53 +08:00
parent d67775f111
commit d3c177d0d8
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,8 @@
module codex-pool
go 1.23
go 1.24.1
toolchain go1.24.6
require (
github.com/andybalholm/brotli v1.2.0
@@ -10,6 +12,7 @@ require (
github.com/chromedp/chromedp v0.14.2
github.com/go-rod/rod v0.116.2
github.com/go-rod/stealth v0.4.9
github.com/mattn/go-sqlite3 v1.14.33
)
require (
@@ -23,7 +26,6 @@ require (
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
github.com/klauspost/compress v1.18.2 // indirect
github.com/mattn/go-sqlite3 v1.14.33 // indirect
github.com/orisano/pixelmatch v0.0.0-20230914042517-fa304d1dc785 // indirect
github.com/quic-go/qpack v0.6.0 // indirect
github.com/tam7t/hpkp v0.0.0-20160821193359-2b70b4024ed5 // indirect
@@ -36,5 +38,4 @@ require (
golang.org/x/net v0.48.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)