Replay server responses from flows.
(self, flows: Sequence[flow.Flow])
| 137 | |
| 138 | @command.command("replay.server") |
| 139 | def load_flows(self, flows: Sequence[flow.Flow]) -> None: |
| 140 | """ |
| 141 | Replay server responses from flows. |
| 142 | """ |
| 143 | self.flowmap = {} |
| 144 | self.add_flows(flows) |
| 145 | |
| 146 | @command.command("replay.server.add") |
| 147 | def add_flows(self, flows: Sequence[flow.Flow]) -> None: |