mirror of
https://github.com/kennethreitz-archive/callingme-service.git
synced 2026-06-17 13:50:58 +00:00
17 lines
292 B
Python
Executable File
17 lines
292 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from flaskext.script import Manager
|
|
|
|
from rush import app
|
|
|
|
manager = Manager(app)
|
|
|
|
# @manager.command
|
|
# def inbox(addr, port):
|
|
# from fedex.emaild import inbox
|
|
|
|
# inbox.serve(int(port), addr)
|
|
|
|
if __name__ == "__main__":
|
|
manager.run() |