haldis/app/james.py

17 lines
280 B
Python
Raw Normal View History

2015-03-31 18:15:22 +00:00
from views import *
2015-04-02 10:56:15 +00:00
from app import app, db
2015-03-31 18:15:22 +00:00
from admin import admin
from login import login_manager
from models import *
from forms import *
from utils import *
from views import *
2015-04-02 10:59:55 +00:00
if __name__ == '__main__':
if app.debug:
app.run(host='0.0.0.0', port=80)
else:
app.run()