Blame view

url.py 164 Bytes
c4176e46d   zhuzhenchao   add file
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),
  ]