# coding: utf-8 from handlers.index import IndexHandler, WebAppHandler urls = [ # 首页链接 (r'/', IndexHandler), (r'/webapp/$', WebAppHandler), ]