package server import ( "context" "net/http" ) type Server struct { mux *http.ServeMux // Mux ctx context.Context // Global application context } func RegisterHandler(ctx context.Context, h http.HandlerFunc) { }