-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetting.py
34 lines (30 loc) · 977 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
#!/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, \
registerHandler, VerificationImgHandler, RecordHandler, FilesHandler, SetupHandler, FunctionsHandler, systemHandler, healthHandler, historyHandler
urls = [
('/', FunctionsHandler),
('/login', loginHandler),
('/logout', LogoutHandler),
('/index', indexHandler),
('/register', registerHandler),
('/verificationimg', VerificationImgHandler),
('/record', RecordHandler),
('/files', FilesHandler),
('/setup', SetupHandler),
('/Functions', FunctionsHandler),
('/system', systemHandler),
('/health', healthHandler),
('/history', historyHandler),
]