Files
govoplan/tools/deployment/govoplan_deploy/__init__.py
Albrecht Degering 82e836b720
Some checks are pending
Dependency Audit / dependency-audit (push) Waiting to run
Deployment Installer / deployment-installer (push) Waiting to run
Security Audit / security-audit (push) Waiting to run
feat(deploy): add declarative installation workflow
2026-07-30 15:36:37 +02:00

20 lines
315 B
Python

"""Declarative GovOPlaN host deployment tooling."""
from .model import (
BASE_MODULES,
FULL_MODULES,
InstallationSpec,
SpecError,
default_spec,
load_spec,
)
__all__ = [
"BASE_MODULES",
"FULL_MODULES",
"InstallationSpec",
"SpecError",
"default_spec",
"load_spec",
]