| 142 | |
| 143 | @dataclass |
| 144 | class SendHttp(HttpCommand): |
| 145 | event: HttpEvent |
| 146 | connection: Connection |
| 147 | |
| 148 | def __repr__(self) -> str: |
| 149 | return f"Send({self.event})" |
| 150 | |
| 151 | |
| 152 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…