Files
Erupe/network/clientctx/clientcontext_test.go
Houmgaor d2b5bb72f8 refactor: extract gametime package, replace fmt.Printf with zap logging
Move time utilities (TimeAdjusted, TimeMidnight, TimeWeekStart, TimeWeekNext,
TimeGameAbsolute) from channelserver into common/gametime to break the
inappropriate dependency where signserver, entranceserver, and api imported
the 38K-line channelserver package just for time functions.

Replace all fmt.Printf debug logging in sys_session.go and handlers_object.go
with structured zap logging for consistent observability.
2026-02-17 17:54:51 +01:00

13 lines
223 B
Go

package clientctx
import (
"testing"
)
// TestClientContext_Exists verifies that the ClientContext type exists
// and can be instantiated.
func TestClientContext_Exists(t *testing.T) {
ctx := ClientContext{}
_ = ctx
}