-
Notifications
You must be signed in to change notification settings - Fork 2
/
setting.py
35 lines (29 loc) · 917 Bytes
/
setting.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/python
#encoding:utf-8
## Copyright (C), 2015-2017, ****.
## project name: pgx_WebService
## Author: hjx
## Version: 0.2
## Date: 2015-07-24
## Description:
## History: 0.2
## 1. Date:
## Author: hjx
## Modification:
## 2. ...
from handlers.WebService import indexHandler, loginHandler, LogoutHandler, MapHandler, \
JSMapHandler, registerHandler, POIHandler, VerificationImgHandler
#
# from handlers.WebService import indexHandler, loginHandler, LogoutHandler, MapHandler, JSMapHandler, registerHandler,
urls = [
('/', indexHandler),
('/login', loginHandler),
('/logout', LogoutHandler),
('/index', indexHandler),
('/register', registerHandler),
('/map', MapHandler),
('/jsmap', JSMapHandler),
('/poi', POIHandler),
('/register', registerHandler),
('/verificationimg', VerificationImgHandler),
]