e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
17 lines
292 B
Go
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)
|
|
}
|