Update app/__init__.py
Browse files- app/__init__.py +1 -0
app/__init__.py
CHANGED
|
@@ -27,6 +27,7 @@ def create_app(config_name="default"):
|
|
| 27 |
app.register_blueprint(admin_routes.bp)
|
| 28 |
app.register_blueprint(payments.bp)
|
| 29 |
app.register_blueprint(admin_tasks.bp)
|
|
|
|
| 30 |
|
| 31 |
# Global context processor for app settings
|
| 32 |
@app.context_processor
|
|
|
|
| 27 |
app.register_blueprint(admin_routes.bp)
|
| 28 |
app.register_blueprint(payments.bp)
|
| 29 |
app.register_blueprint(admin_tasks.bp)
|
| 30 |
+
app.register_blueprint(cron.bp)
|
| 31 |
|
| 32 |
# Global context processor for app settings
|
| 33 |
@app.context_processor
|