diff --git a/inventory_provider/__init__.py b/inventory_provider/__init__.py index d350c9ebbcd98a251485f562b3259f9980ae8721..b3ab8f8a1f71ef03c5a0ca0f456de37578e38042 100644 --- a/inventory_provider/__init__.py +++ b/inventory_provider/__init__.py @@ -74,6 +74,9 @@ def create_app(): from inventory_provider.routes import lnetd app.register_blueprint(lnetd.routes, url_prefix='/LnetD') + from inventory_provider.routes import neteng + app.register_blueprint(neteng.routes, url_prefix='/neteng') + if app.config.get('ENABLE_TESTING_ROUTES', False): from inventory_provider.routes import testing app.register_blueprint(testing.routes, url_prefix='/testing')