DEBSOURCES
Skip Quicknav
sources / dask.distributed / 2021.01.0%2Bds.1-2.1%2Bdeb11u1 / distributed / http / statics.py
12345678910
from tornado import web import os routes = [ ( r"/statics/(.*)", web.StaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), "static")}, ) ]