For subclass to add extra headers to the response
(self, path: str)
| 2934 | return "application/octet-stream" |
| 2935 | |
| 2936 | def set_extra_headers(self, path: str) -> None: |
| 2937 | """For subclass to add extra headers to the response""" |
| 2938 | pass |
| 2939 | |
| 2940 | def get_cache_time( |
| 2941 | self, path: str, modified: Optional[datetime.datetime], mime_type: str |