mirror of https://github.com/milvus-io/milvus.git
12 lines
192 B
Go
12 lines
192 B
Go
|
package datanode
|
||
|
|
||
|
import (
|
||
|
"github.com/zilliztech/milvus-distributed/internal/datanode"
|
||
|
"google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
type Server struct {
|
||
|
node datanode.Node
|
||
|
brpcServer *grpc.Server
|
||
|
}
|