In axum a "handler" is an async function that accepts zero or more
["extractors"](#extractors) as arguments and returns something that
can be converted [into a response](crate::response).
Handlers is where your application logic lives and axum applications are built
by routing between handlers.