I am using app.mount similar to the following example:
app.mount("/app", StaticFiles(directory="html", html="index.html"), name="static")
How would I go about adding custom response headers when mounting static files in this fashion? Specifically, I would like to add cache-control response headers for this mount.
Thank you.