(
Path(account_id): Path<String>,
State(state): State<ApplicationState>,
CommandExtractor(metadata, command): CommandExtractor,
)
| 26 | Ok(query_handler(Path(account_id), State(state)).await) |
| 27 | } |
| 28 | async fn lambda_command_handler( |
| 29 | Path(account_id): Path<String>, |
| 30 | State(state): State<ApplicationState>, |
| 31 | CommandExtractor(metadata, command): CommandExtractor, |
| 32 | ) -> Result<Response, (StatusCode, String)> { |
| 33 | Ok(command_handler( |
| 34 | Path(account_id), |
| 35 | State(state), |
| 36 | CommandExtractor(metadata, command), |
| 37 | ) |
| 38 | .await) |
| 39 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…