Source code for weaviate.collections.cluster.async_

from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionAsync
from weaviate.collections.cluster.executor import _ClusterExecutor


[docs] @executor.wrap("async") class _ClusterAsync(_ClusterExecutor[ConnectionAsync]): pass