mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-31 07:55:38 +08:00
21 lines
266 B
Go
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
|
|
}
|