Add package init files and models
This commit is contained in:
25
confsync/models/__init__.py
Normal file
25
confsync/models/__init__.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
from confsync.models.config_models import (
|
||||||
|
ConfigFile,
|
||||||
|
ConfigCategory,
|
||||||
|
Manifest,
|
||||||
|
ManifestEntry,
|
||||||
|
SyncMetadata,
|
||||||
|
SyncOperation,
|
||||||
|
ValidationResult,
|
||||||
|
ValidationIssue,
|
||||||
|
MergeResult,
|
||||||
|
HistoryEntry,
|
||||||
|
)
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"ConfigFile",
|
||||||
|
"ConfigCategory",
|
||||||
|
"Manifest",
|
||||||
|
"ManifestEntry",
|
||||||
|
"SyncMetadata",
|
||||||
|
"SyncOperation",
|
||||||
|
"ValidationResult",
|
||||||
|
"ValidationIssue",
|
||||||
|
"MergeResult",
|
||||||
|
"HistoryEntry",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user