Versions in this module Expand all Collapse all v0 v0.0.2 Sep 6, 2024 v0.0.1 Aug 24, 2024 Changes in this version + type Context struct + Name string + type ContextLoader struct + Loader *Loader + func NewContextLoader(loader *Loader) *ContextLoader + func (c *ContextLoader) LoadContexts() ([]Context, error) + type FileSystemProvider struct + ExcludePatterns []string + IncludePatterns []string + func NewFileSystemProvider(IncludePatterns, ExcludePatterns []string) *FileSystemProvider + func (f *FileSystemProvider) Load() ([]WithPath, error) + type Loader struct + Providers []Provider + func NewLoader(providers ...Provider) *Loader + func (l *Loader) LoadAll() ([]WithPath, error) + type Provider interface + Load func() ([]WithPath, error) + type WithPath struct + Config *api.Config + FilePath string