mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 01:46:10 +08:00
9 lines
241 B
Python
9 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)
|