From c435f89f0e066da591288134f05358832d9712a5 Mon Sep 17 00:00:00 2001
From: Erik Reid <erik.reid@geant.org>
Date: Tue, 14 Mar 2023 14:54:13 +0100
Subject: [PATCH] moved files into a package directory

---
 .../alembic.ini                                     |   0
 main.py => geant_service_orchestrator/main.py       |   0
 .../migrations}/__pycache__/env.cpython-39.pyc      | Bin
 .../migrations}/env.py                              |   0
 .../migrations}/helpers.py                          |   0
 .../migrations}/script.py.mako                      |   0
 ...8_431ca061b2ad_add_products_for_trunk_service.py |   0
 ...5157b_add_delete_workflows_and_update_create_.py |   0
 .../2023-03-13_aa49bed10737_add_create_workflows.py |   0
 .../products}/__init__.py                           |   0
 .../products}/product_blocks/trunk.py               |   0
 .../products}/product_blocks/trunk_config.py        |   0
 .../products}/product_blocks/trunk_config_common.py |   0
 .../products}/product_blocks/trunk_config_side.py   |   0
 .../products}/product_types/trunk.py                |   0
 .../products}/product_types/trunk_config.py         |   0
 .../products}/product_types/trunk_config_common.py  |   0
 .../products}/product_types/trunk_config_side.py    |   0
 .../workflows}/__init__.py                          |   0
 .../workflows}/trunk/create_trunk.py                |   0
 .../workflows}/trunk/terminate_trunk.py             |   0
 .../workflows}/trunk_config/create_trunk_config.py  |   0
 .../trunk_config/terminate_trunk_config.py          |   0
 .../create_trunk_config_common.py                   |   0
 .../terminate_trunk_config_common.py                |   0
 .../trunk_config_side/create_trunk_config_side.py   |   0
 .../terminate_trunk_config_side.py                  |   0
 27 files changed, 0 insertions(+), 0 deletions(-)
 rename alembic.ini => geant_service_orchestrator/alembic.ini (100%)
 rename main.py => geant_service_orchestrator/main.py (100%)
 rename {migrations => geant_service_orchestrator/migrations}/__pycache__/env.cpython-39.pyc (100%)
 rename {migrations => geant_service_orchestrator/migrations}/env.py (100%)
 rename {migrations => geant_service_orchestrator/migrations}/helpers.py (100%)
 rename {migrations => geant_service_orchestrator/migrations}/script.py.mako (100%)
 rename {migrations => geant_service_orchestrator/migrations}/versions/schema/2023-03-08_431ca061b2ad_add_products_for_trunk_service.py (100%)
 rename {migrations => geant_service_orchestrator/migrations}/versions/schema/2023-03-13_8329fa45157b_add_delete_workflows_and_update_create_.py (100%)
 rename {migrations => geant_service_orchestrator/migrations}/versions/schema/2023-03-13_aa49bed10737_add_create_workflows.py (100%)
 rename {products => geant_service_orchestrator/products}/__init__.py (100%)
 rename {products => geant_service_orchestrator/products}/product_blocks/trunk.py (100%)
 rename {products => geant_service_orchestrator/products}/product_blocks/trunk_config.py (100%)
 rename {products => geant_service_orchestrator/products}/product_blocks/trunk_config_common.py (100%)
 rename {products => geant_service_orchestrator/products}/product_blocks/trunk_config_side.py (100%)
 rename {products => geant_service_orchestrator/products}/product_types/trunk.py (100%)
 rename {products => geant_service_orchestrator/products}/product_types/trunk_config.py (100%)
 rename {products => geant_service_orchestrator/products}/product_types/trunk_config_common.py (100%)
 rename {products => geant_service_orchestrator/products}/product_types/trunk_config_side.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/__init__.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk/create_trunk.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk/terminate_trunk.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk_config/create_trunk_config.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk_config/terminate_trunk_config.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk_config_common/create_trunk_config_common.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk_config_common/terminate_trunk_config_common.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk_config_side/create_trunk_config_side.py (100%)
 rename {workflows => geant_service_orchestrator/workflows}/trunk_config_side/terminate_trunk_config_side.py (100%)

diff --git a/alembic.ini b/geant_service_orchestrator/alembic.ini
similarity index 100%
rename from alembic.ini
rename to geant_service_orchestrator/alembic.ini
diff --git a/main.py b/geant_service_orchestrator/main.py
similarity index 100%
rename from main.py
rename to geant_service_orchestrator/main.py
diff --git a/migrations/__pycache__/env.cpython-39.pyc b/geant_service_orchestrator/migrations/__pycache__/env.cpython-39.pyc
similarity index 100%
rename from migrations/__pycache__/env.cpython-39.pyc
rename to geant_service_orchestrator/migrations/__pycache__/env.cpython-39.pyc
diff --git a/migrations/env.py b/geant_service_orchestrator/migrations/env.py
similarity index 100%
rename from migrations/env.py
rename to geant_service_orchestrator/migrations/env.py
diff --git a/migrations/helpers.py b/geant_service_orchestrator/migrations/helpers.py
similarity index 100%
rename from migrations/helpers.py
rename to geant_service_orchestrator/migrations/helpers.py
diff --git a/migrations/script.py.mako b/geant_service_orchestrator/migrations/script.py.mako
similarity index 100%
rename from migrations/script.py.mako
rename to geant_service_orchestrator/migrations/script.py.mako
diff --git a/migrations/versions/schema/2023-03-08_431ca061b2ad_add_products_for_trunk_service.py b/geant_service_orchestrator/migrations/versions/schema/2023-03-08_431ca061b2ad_add_products_for_trunk_service.py
similarity index 100%
rename from migrations/versions/schema/2023-03-08_431ca061b2ad_add_products_for_trunk_service.py
rename to geant_service_orchestrator/migrations/versions/schema/2023-03-08_431ca061b2ad_add_products_for_trunk_service.py
diff --git a/migrations/versions/schema/2023-03-13_8329fa45157b_add_delete_workflows_and_update_create_.py b/geant_service_orchestrator/migrations/versions/schema/2023-03-13_8329fa45157b_add_delete_workflows_and_update_create_.py
similarity index 100%
rename from migrations/versions/schema/2023-03-13_8329fa45157b_add_delete_workflows_and_update_create_.py
rename to geant_service_orchestrator/migrations/versions/schema/2023-03-13_8329fa45157b_add_delete_workflows_and_update_create_.py
diff --git a/migrations/versions/schema/2023-03-13_aa49bed10737_add_create_workflows.py b/geant_service_orchestrator/migrations/versions/schema/2023-03-13_aa49bed10737_add_create_workflows.py
similarity index 100%
rename from migrations/versions/schema/2023-03-13_aa49bed10737_add_create_workflows.py
rename to geant_service_orchestrator/migrations/versions/schema/2023-03-13_aa49bed10737_add_create_workflows.py
diff --git a/products/__init__.py b/geant_service_orchestrator/products/__init__.py
similarity index 100%
rename from products/__init__.py
rename to geant_service_orchestrator/products/__init__.py
diff --git a/products/product_blocks/trunk.py b/geant_service_orchestrator/products/product_blocks/trunk.py
similarity index 100%
rename from products/product_blocks/trunk.py
rename to geant_service_orchestrator/products/product_blocks/trunk.py
diff --git a/products/product_blocks/trunk_config.py b/geant_service_orchestrator/products/product_blocks/trunk_config.py
similarity index 100%
rename from products/product_blocks/trunk_config.py
rename to geant_service_orchestrator/products/product_blocks/trunk_config.py
diff --git a/products/product_blocks/trunk_config_common.py b/geant_service_orchestrator/products/product_blocks/trunk_config_common.py
similarity index 100%
rename from products/product_blocks/trunk_config_common.py
rename to geant_service_orchestrator/products/product_blocks/trunk_config_common.py
diff --git a/products/product_blocks/trunk_config_side.py b/geant_service_orchestrator/products/product_blocks/trunk_config_side.py
similarity index 100%
rename from products/product_blocks/trunk_config_side.py
rename to geant_service_orchestrator/products/product_blocks/trunk_config_side.py
diff --git a/products/product_types/trunk.py b/geant_service_orchestrator/products/product_types/trunk.py
similarity index 100%
rename from products/product_types/trunk.py
rename to geant_service_orchestrator/products/product_types/trunk.py
diff --git a/products/product_types/trunk_config.py b/geant_service_orchestrator/products/product_types/trunk_config.py
similarity index 100%
rename from products/product_types/trunk_config.py
rename to geant_service_orchestrator/products/product_types/trunk_config.py
diff --git a/products/product_types/trunk_config_common.py b/geant_service_orchestrator/products/product_types/trunk_config_common.py
similarity index 100%
rename from products/product_types/trunk_config_common.py
rename to geant_service_orchestrator/products/product_types/trunk_config_common.py
diff --git a/products/product_types/trunk_config_side.py b/geant_service_orchestrator/products/product_types/trunk_config_side.py
similarity index 100%
rename from products/product_types/trunk_config_side.py
rename to geant_service_orchestrator/products/product_types/trunk_config_side.py
diff --git a/workflows/__init__.py b/geant_service_orchestrator/workflows/__init__.py
similarity index 100%
rename from workflows/__init__.py
rename to geant_service_orchestrator/workflows/__init__.py
diff --git a/workflows/trunk/create_trunk.py b/geant_service_orchestrator/workflows/trunk/create_trunk.py
similarity index 100%
rename from workflows/trunk/create_trunk.py
rename to geant_service_orchestrator/workflows/trunk/create_trunk.py
diff --git a/workflows/trunk/terminate_trunk.py b/geant_service_orchestrator/workflows/trunk/terminate_trunk.py
similarity index 100%
rename from workflows/trunk/terminate_trunk.py
rename to geant_service_orchestrator/workflows/trunk/terminate_trunk.py
diff --git a/workflows/trunk_config/create_trunk_config.py b/geant_service_orchestrator/workflows/trunk_config/create_trunk_config.py
similarity index 100%
rename from workflows/trunk_config/create_trunk_config.py
rename to geant_service_orchestrator/workflows/trunk_config/create_trunk_config.py
diff --git a/workflows/trunk_config/terminate_trunk_config.py b/geant_service_orchestrator/workflows/trunk_config/terminate_trunk_config.py
similarity index 100%
rename from workflows/trunk_config/terminate_trunk_config.py
rename to geant_service_orchestrator/workflows/trunk_config/terminate_trunk_config.py
diff --git a/workflows/trunk_config_common/create_trunk_config_common.py b/geant_service_orchestrator/workflows/trunk_config_common/create_trunk_config_common.py
similarity index 100%
rename from workflows/trunk_config_common/create_trunk_config_common.py
rename to geant_service_orchestrator/workflows/trunk_config_common/create_trunk_config_common.py
diff --git a/workflows/trunk_config_common/terminate_trunk_config_common.py b/geant_service_orchestrator/workflows/trunk_config_common/terminate_trunk_config_common.py
similarity index 100%
rename from workflows/trunk_config_common/terminate_trunk_config_common.py
rename to geant_service_orchestrator/workflows/trunk_config_common/terminate_trunk_config_common.py
diff --git a/workflows/trunk_config_side/create_trunk_config_side.py b/geant_service_orchestrator/workflows/trunk_config_side/create_trunk_config_side.py
similarity index 100%
rename from workflows/trunk_config_side/create_trunk_config_side.py
rename to geant_service_orchestrator/workflows/trunk_config_side/create_trunk_config_side.py
diff --git a/workflows/trunk_config_side/terminate_trunk_config_side.py b/geant_service_orchestrator/workflows/trunk_config_side/terminate_trunk_config_side.py
similarity index 100%
rename from workflows/trunk_config_side/terminate_trunk_config_side.py
rename to geant_service_orchestrator/workflows/trunk_config_side/terminate_trunk_config_side.py
-- 
GitLab