For subclass to add extra headers to the response
(self, path: str)
| 3137 | return "application/octet-stream" |
| 3138 | |
| 3139 | def set_extra_headers(self, path: str) -> None: |
| 3140 | """For subclass to add extra headers to the response""" |
| 3141 | pass |
| 3142 | |
| 3143 | def get_cache_time( |
| 3144 | self, path: str, modified: Optional[datetime.datetime], mime_type: str |