Versions in this module Expand all Collapse all v0 v0.1.0 Nov 30, 2024 Changes in this version + var ErrInvalidConfigFile = errors.New("invalid config file") + func WithContext(ctx context.Context, c Config) context.Context + type Auth struct + Token string + func (a *Auth) EffectiveToken() string + type Config struct + Sites []Site + func FromContext(ctx context.Context) Config + func Load(ctx context.Context, file string) (Config, error) + func (c Config) Merge(cfg Config) Config + func (c Config) Site(site string) Site + type Site struct + Address string + func (s Site) Match(site Site) bool + func (s Site) Merge(override Site) Site + type Type string + const TypeGitHub