(s *ServerSession, p P)
| 518 | func (r *ServerRequest[P]) GetExtra() *RequestExtra { return r.Extra } |
| 519 | |
| 520 | func serverRequestFor[P Params](s *ServerSession, p P) *ServerRequest[P] { |
| 521 | return &ServerRequest[P]{Session: s, Params: p} |
| 522 | } |
| 523 | |
| 524 | func clientRequestFor[P Params](s *ClientSession, p P) *ClientRequest[P] { |
| 525 | return &ClientRequest[P]{Session: s, Params: p} |
no outgoing calls
no test coverage detected
searching dependent graphs…