blob: b6e3800018a5b6d3db167457daf6fa90affa44f8 [file] [log] [blame]
from . import handlers
from .router import any_method
routes = [(any_method, "*.py", handlers.python_script_handler),
("GET", "*.asis", handlers.as_is_handler),
("GET", "*", handlers.file_handler),
]