From 8900d1895eb2067b3ff5aa07763d302b7687fbcf Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Mon, 16 May 2022 21:08:58 +0200 Subject: Start work on orders. --- app/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/__init__.py') diff --git a/app/__init__.py b/app/__init__.py index 3d1bac6..0e553b3 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -28,7 +28,7 @@ def create_app(): app.register_blueprint(main) - from .modules import common, auth, products, customers, ferti, invoices + from .modules import common, auth, products, customers, ferti, invoices, orders app.register_blueprint(common) app.register_blueprint(auth) @@ -36,5 +36,7 @@ def create_app(): app.register_blueprint(customers) app.register_blueprint(ferti) app.register_blueprint(invoices) + app.register_blueprint(orders) + return app -- cgit v1.2.3