Source code for weaviate.backup.async_

from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionAsync
from weaviate.backup.executor import _BackupExecutor


[docs] @executor.wrap("async") class _BackupAsync(_BackupExecutor[ConnectionAsync]): pass