Add registry module (local, remote, models)

This commit is contained in:
2026-02-04 12:33:07 +00:00
parent 4847f319de
commit 1349a9ee4e

View File

@@ -0,0 +1,5 @@
from .local import LocalRegistry
from .remote import RemoteRegistry
from .models import RegistryEntry, SearchResult
__all__ = ["LocalRegistry", "RemoteRegistry", "RegistryEntry", "SearchResult"]