We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 769b6e1 commit b6d1d4fCopy full SHA for b6d1d4f
blog.py
@@ -5,14 +5,15 @@
5
from controllers import admin
6
from controllers import fe
7
from appconfig import *
8
-
+from flask.ext.compress import Compress
9
10
account_api = account.account_api
11
static_api = static.static_api
12
admin_api = admin.admin_api
13
fe = fe.fe
14
15
app = Flask(__name__)
16
+Compress(app)
17
app.register_blueprint(account_api)
18
app.register_blueprint(static_api)
19
app.register_blueprint(admin_api)
0 commit comments