Spaces:
Runtime error
Runtime error
register intro
Browse files
ice_breaking_challenge/__init__.py
CHANGED
@@ -48,6 +48,9 @@ def create_app(test_config=None):
|
|
48 |
from . import qr
|
49 |
app.register_blueprint(qr.bp)
|
50 |
|
|
|
|
|
|
|
51 |
# make url_for('index') == url_for('blog.index')
|
52 |
# in another app, you might define a separate main index here with
|
53 |
# app.route, while giving the blog blueprint a url_prefix, but for
|
|
|
48 |
from . import qr
|
49 |
app.register_blueprint(qr.bp)
|
50 |
|
51 |
+
from . import introduction
|
52 |
+
app.register_blueprint(introduction.bp)
|
53 |
+
|
54 |
# make url_for('index') == url_for('blog.index')
|
55 |
# in another app, you might define a separate main index here with
|
56 |
# app.route, while giving the blog blueprint a url_prefix, but for
|