2019-05-31 01:11:13 +03:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-01-25 13:41:25 +03:00
|
|
|
"github.com/micro/cli/v2"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/config/source"
|
2019-05-31 01:11:13 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|