url.py 164 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 # coding: utf-8 from handlers.index import IndexHandler, WebAppHandler urls = [ # 首页链接 (r'/', IndexHandler), (r'/webapp/$', WebAppHandler), ]