| 60 | } |
| 61 | |
| 62 | type SessionReadWriteCloser struct { |
| 63 | session sockjs.Session |
| 64 | } |
| 65 | |
| 66 | func (s SessionReadWriteCloser) Read(b []byte) (int, error) { |
| 67 | str, err := s.session.Recv() |
nothing calls this directly
no outgoing calls
no test coverage detected