Register that a HTTP connection attempt has been completed.
| 132 | |
| 133 | @dataclass |
| 134 | class RegisterHttpConnection(HttpCommand): |
| 135 | """ |
| 136 | Register that a HTTP connection attempt has been completed. |
| 137 | """ |
| 138 | |
| 139 | connection: Connection |
| 140 | err: str | None |
| 141 | |
| 142 | |
| 143 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…