Source code for weaviate.collections.backups.sync

from weaviate.collections.backups.executor import _CollectionBackupExecutor
from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionSync


[docs] @executor.wrap("sync") class _CollectionBackup(_CollectionBackupExecutor[ConnectionSync]): pass