diff --git a/testing-framework/runners/k8s/src/deployer/mod.rs b/testing-framework/runners/k8s/src/deployer/mod.rs new file mode 100644 index 0000000..e42a6da --- /dev/null +++ b/testing-framework/runners/k8s/src/deployer/mod.rs @@ -0,0 +1,3 @@ +mod orchestrator; + +pub use orchestrator::{K8sDeployer, K8sRunnerError}; diff --git a/testing-framework/runners/k8s/src/deployer.rs b/testing-framework/runners/k8s/src/deployer/orchestrator.rs similarity index 100% rename from testing-framework/runners/k8s/src/deployer.rs rename to testing-framework/runners/k8s/src/deployer/orchestrator.rs