| 32 | |
| 33 | @dataclass |
| 34 | class RequestData(HttpEvent): |
| 35 | data: bytes |
| 36 | |
| 37 | def __init__(self, stream_id: int, data: bytes): |
| 38 | self.stream_id = stream_id |
| 39 | self.data = data |
| 40 | |
| 41 | |
| 42 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…