mirror of
https://github.com/woodchen-ink/proxy-go.git
synced 2025-07-18 08:31:55 +08:00
- Updated docker-compose.yml to include resource limits and health checks for the service. - Modified go.mod and go.sum to include the new dependency on golang.org/x/time. - Enhanced main.go to add new metrics routes for monitoring. - Updated config.json to include metrics configuration with password and token expiry. - Refactored internal/config to implement a ConfigManager for dynamic configuration loading. - Improved internal/handler to utilize a shared HTTP client and added metrics tracking for requests.
9 lines
104 B
Modula-2
9 lines
104 B
Modula-2
module proxy-go
|
|
|
|
go 1.23.1
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.1
|
|
golang.org/x/time v0.8.0
|
|
)
|