Update app.py
Browse files
app.py
CHANGED
@@ -429,7 +429,7 @@ app.register_blueprint(menu_blueprint)
|
|
429 |
app.register_blueprint(cart_blueprint, url_prefix='/cart') # Register the cart blueprint with URL prefix
|
430 |
|
431 |
app.register_blueprint(order_blueprint)
|
432 |
-
app.register_blueprint(orderhistory_blueprint)
|
433 |
|
434 |
|
435 |
|
|
|
429 |
app.register_blueprint(cart_blueprint, url_prefix='/cart') # Register the cart blueprint with URL prefix
|
430 |
|
431 |
app.register_blueprint(order_blueprint)
|
432 |
+
app.register_blueprint(orderhistory_blueprint, url_prefix='/orderhistory')
|
433 |
|
434 |
|
435 |
|