mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
12 lines
296 B
Python
12 lines
296 B
Python
import logging
|
|
|
|
import grpco
|
|
from milvus.grpc_gen import milvus_pb2, milvus_pb2_grpc, status_pb2
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class ServiceHandler(milvus_pb2_grpc.MilvusServiceServicer):
|
|
def __init__(self, connections, *args, **kwargs):
|
|
self.connections = self.connections
|