If your application (somehow) doesn't have to communicate with anything else and wait for it to respond, use `async def`.
If your application doesn't need to communicate with anything else or await a response, it's still safe to use `async def` -- even if there's nothing to `await`.