Source code distributed/http/statics.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from tornado import web
import os

routes = [
    (
        r"/statics/(.*)",
        web.StaticFileHandler,
        {"path": os.path.join(os.path.dirname(__file__), "static")},
    )
]