feat(sync): export edge artifact authority model
This commit is contained in:
parent
aab1e70cb9
commit
9b333a40a1
1 changed files with 19 additions and 0 deletions
19
core/sync/__init__.py
Normal file
19
core/sync/__init__.py
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
"""Edge/cloud sync contracts for CORE.
|
||||||
|
|
||||||
|
This package is intentionally pure at import time: no object-store client,
|
||||||
|
no network dependency, and no hot-path integration.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from core.sync.artifacts import (
|
||||||
|
ARTIFACT_AUTHORITY,
|
||||||
|
ArtifactAuthority,
|
||||||
|
ArtifactType,
|
||||||
|
authority_for,
|
||||||
|
)
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"ARTIFACT_AUTHORITY",
|
||||||
|
"ArtifactAuthority",
|
||||||
|
"ArtifactType",
|
||||||
|
"authority_for",
|
||||||
|
]
|
||||||
Loading…
Reference in a new issue