blob: d2bdcfb30efd64c94dbf9dd91137fab2c631071f [file] [log] [blame]
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),
]