use StatusCode;
use ;
// Make our own error that wraps `anyhow::Error`.
pub ;
// Tell axum how to convert `AppError` into a response.
// This enables using `?` on functions that return `Result<_, anyhow::Error>` to turn them into
// `Result<_, AppError>`. That way you don't need to do that manually.