XuanYang-cn 6a13386393 Add DataNode package
Signed-off-by: XuanYang-cn <xuan.yang@zilliz.com>
2021-01-19 11:37:16 +08:00

33 lines
534 B
Go

package datanode
import (
"context"
"github.com/zilliztech/milvus-distributed/internal/proto/datapb"
)
type Client struct {
ctx context.Context
// GOOSE TODO: add DataNodeClient
}
func (c *Client) Init() {
panic("implement me")
}
func (c *Client) Start() {
panic("implement me")
}
func (c *Client) Stop() {
panic("implement me")
}
func (c *Client) WatchDmChannels(datapb.WatchDmChannelRequest, error) {
panic("implement me")
}
func (c *Client) FlushSegment() (datapb.FlushSegRequest, error) {
panic("implement me")
}