mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-21 23:22:34 +01:00
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.
13 lines
223 B
Go
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
|
|
}
|