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

21 lines
266 B
Go

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