diff --git a/src/coordinator.py b/src/coordinator.py index dfe7e06..f7af1aa 100644 --- a/src/coordinator.py +++ b/src/coordinator.py @@ -8,6 +8,7 @@ from src.dirmanager import DirManager from src.html_helper import merge_html_files from src.runner import Runner from src.tests_authentik.runner_authentik import RunnerAuthentik +from src.tests_nextcloud.runner_nextcloud import RunnerNextcloud from src.tests_wordpress.runner_wordpress import RunnerWordpress from src.utils import rmtree @@ -15,6 +16,7 @@ from src.utils import rmtree RUNNER_DICT: dict[str, type[Runner]] = { "authentik": RunnerAuthentik, "wordpress": RunnerWordpress, + "nextcloud": RunnerNextcloud, }