Versions in this module Expand all Collapse all v0 v0.2.0 Oct 30, 2024 v0.1.0 Oct 30, 2024 Changes in this version + var ErrResolverNotInterested = errors.New("resolver not interested") + type Env struct + Args string + Key string + Resolved bool + Type string + Value string + func ParseEnvs(src []string) ([]*Env, error) + type Loader interface + Load func(ctx context.Context) error + func NewLoader(opts ...LoaderOption) Loader + type LoaderOption func(*loader) + func WithEnvLoader(_l func(ctx context.Context) ([]*Env, error)) LoaderOption + func WithResolver(resolvers ...Resolver) LoaderOption + type Resolver interface + Push func(env *Env) error + Resolve func(ctx context.Context) error