(s *interop.Server)
| 37 | type mockInterop struct{} |
| 38 | |
| 39 | func (m mockInterop) RegisterInterop(s *interop.Server) { |
| 40 | s.RegisterJS(m) |
| 41 | } |
| 42 | |
| 43 | func (m mockInterop) JoinRequest(ctx context.Context, req *interop.JoinReq) (*interop.JoinAns, error) { |
| 44 | ansHeader, err := req.AnswerHeader() |
nothing calls this directly
no test coverage detected