Guest User

Untitled

a guest
Apr 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ========================================================================
  2. mymodule.py
  3. ========================================================================
  4.  
  5. import sys, os
  6. PATH = os.path.dirname(os.path.realpath(__file__))
  7. sys.path.insert(0, PATH)
  8.  
  9. from exchange_server import create_app
  10. application = create_app()
  11.  
  12.  
  13. ========================================================================
  14. exchange_server.py
  15.  
  16. You will probably need to add something like the following
  17. ========================================================================
  18.  
  19. def create_app():
  20. return appll
Add Comment
Please, Sign In to add comment