milvus/cmd/distributed/components/msg_stream_service.go
neza2017 f6db55fab5 Add main
Signed-off-by: neza2017 <yefu.chen@zilliz.com>
2021-02-01 12:04:21 +08:00

21 lines
258 B
Go

package components
import (
"context"
)
func NewMsgStreamService(ctx context.Context) (*MsgStream, error) {
return nil, nil
}
type MsgStream struct {
}
func (ps *MsgStream) Run() error {
return nil
}
func (ps *MsgStream) Stop() error {
return nil
}