1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/context.go

17 lines
292 B
Go
Raw Normal View History

2016-01-28 20:23:24 +02:00
package client
import (
2018-03-03 13:53:52 +02:00
"context"
2016-01-28 20:23:24 +02:00
)
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)
}