Guest User

Untitled

a guest
May 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. from tornado.web import Application
  2.  
  3. from day5.utils.dbutil import DBUtile
  4.  
  5.  
  6. class MyApplication(Application):
  7. def __init__(self,handlers,tp,sp,um):
  8. super().__init__(handlers=handlers,template_path=tp,static_path=sp,ui_modules=um)
  9. self.dbutil = DBUtile()
Add Comment
Please, Sign In to add comment