mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
c9d0c157ec
Signed-off-by: jaime <yun.zhang@zilliz.com>
20 lines
351 B
Go
20 lines
351 B
Go
package grpcclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util"
|
|
)
|
|
|
|
type Token struct {
|
|
Value string
|
|
}
|
|
|
|
func (t *Token) GetRequestMetadata(ctx context.Context, uri ...string) (map[string]string, error) {
|
|
return map[string]string{util.HeaderSourceID: t.Value}, nil
|
|
}
|
|
|
|
func (t *Token) RequireTransportSecurity() bool {
|
|
return false
|
|
}
|