diff options
| author | Marius Peter <marius.peter@tutanota.com> | 2022-05-16 21:08:58 +0200 |
|---|---|---|
| committer | Marius Peter <marius.peter@tutanota.com> | 2022-05-16 21:08:58 +0200 |
| commit | 8900d1895eb2067b3ff5aa07763d302b7687fbcf (patch) | |
| tree | b6be40ef02a7ee09262d238d099f6c5f3e294d4d /app/__init__.py | |
| parent | 6d58a93c42ba7003237055da82bd339a66bd3cc8 (diff) | |
Start work on orders.
Diffstat (limited to 'app/__init__.py')
| -rw-r--r-- | app/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
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 |