Files
opencloud/vendor/go-micro.dev/v4/client/context.go
2023-04-19 20:24:34 +02:00

17 lines
292 B
Go

package client
import (
"context"
)
type clientKey struct{}
func FromContext(ctx context.Context) (Client, bool) {
c, ok := ctx.Value(clientKey{}).(Client)
return c, ok
}
func NewContext(ctx context.Context, c Client) context.Context {
return context.WithValue(ctx, clientKey{}, c)
}