mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 13:28:49 +08:00
21 lines
258 B
Go
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
|
||
|
}
|