mirror of
https://github.com/vale981/ray
synced 2025-03-07 02:51:39 -05:00
8 lines
241 B
Python
8 lines
241 B
Python
import mimetypes
|
|
import ray.new_dashboard.modules.log.log_consts as log_consts
|
|
|
|
|
|
def register_mimetypes():
|
|
for _type, extensions in log_consts.MIME_TYPES.items():
|
|
for ext in extensions:
|
|
mimetypes.add_type(_type, ext)
|