mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +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
|
|
}
|