From f8f7870fd0956723baa857d9ae0fdfcdc05998d9 Mon Sep 17 00:00:00 2001
From: Erik Reid <erik.reid@geant.org>
Date: Mon, 24 Apr 2023 12:55:57 +0200
Subject: [PATCH] fixed some module/path stuff

---
 gso/workflows/__init__.py         | 8 ++++----
 gso/workflows/device/__init__.py  | 0
 gso/workflows/iptrunk/__init__.py | 0
 3 files changed, 4 insertions(+), 4 deletions(-)
 create mode 100644 gso/workflows/device/__init__.py
 create mode 100644 gso/workflows/iptrunk/__init__.py

diff --git a/gso/workflows/__init__.py b/gso/workflows/__init__.py
index b768502b..33951c4e 100644
--- a/gso/workflows/__init__.py
+++ b/gso/workflows/__init__.py
@@ -1,6 +1,6 @@
 from orchestrator.workflows import LazyWorkflowInstance
 
-LazyWorkflowInstance("workflows.device.create_device", "create_device")
-LazyWorkflowInstance("workflows.device.terminate_device", "terminate_device")
-LazyWorkflowInstance("workflows.device.get_facts", "get_facts")
-LazyWorkflowInstance("workflows.iptrunk.create_iptrunk", "create_iptrunk")
+LazyWorkflowInstance("gso.workflows.device.create_device", "create_device")
+LazyWorkflowInstance("gso.workflows.device.terminate_device", "terminate_device")
+LazyWorkflowInstance("gso.workflows.device.get_facts", "get_facts")
+LazyWorkflowInstance("gso.workflows.iptrunk.create_iptrunk", "create_iptrunk")
diff --git a/gso/workflows/device/__init__.py b/gso/workflows/device/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/gso/workflows/iptrunk/__init__.py b/gso/workflows/iptrunk/__init__.py
new file mode 100644
index 00000000..e69de29b
-- 
GitLab