Sebastian Mark
44a64bfce4
- add Gorilla handlers package for enhanced HTTP handling - refactor HTTP server to use a new ServeMux for routing - update ListenAndServe to utilize ProxyHeaders for better proxy support - add RealIP field to client model - use RealIP fild for connect/disconnect log output
24 lines
784 B
Modula-2
24 lines
784 B
Modula-2
module git.smsvc.net/pomodoro/GoTomato
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/charmbracelet/log v0.4.0
|
|
github.com/gorilla/handlers v1.5.2
|
|
github.com/gorilla/websocket v1.5.3
|
|
)
|
|
|
|
require (
|
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
|
github.com/charmbracelet/lipgloss v0.10.0 // indirect
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
github.com/go-logfmt/logfmt v0.6.0 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.18 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
|
github.com/muesli/termenv v0.15.2 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
)
|