Add package init files and models
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-04 20:00:53 +00:00
parent 3a259af1b3
commit b38f2b6e57

14
confsync/__init__.py Normal file
View File

@@ -0,0 +1,14 @@
from confsync.models.config_models import (
ConfigFile,
Manifest,
SyncMetadata,
)
from confsync.core.manifest import ManifestBuilder
__all__ = [
"__version__",
"ConfigFile",
"Manifest",
"SyncMetadata",
"ManifestBuilder",
]