mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
0c2041e439
* add events package * update go version
21 lines
364 B
Go
21 lines
364 B
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
"go-micro.dev/v4/config/source"
|
|
)
|
|
|
|
type contextKey struct{}
|
|
|
|
// Context sets the cli context
|
|
func Context(c *cli.Context) source.Option {
|
|
return func(o *source.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, contextKey{}, c)
|
|
}
|
|
}
|