Versions in this module Expand all Collapse all v0 v0.16.0 May 17, 2026 v0.15.0 May 16, 2026 Changes in this version + func Wire[T any](mgr *fastconf.Manager[T], r Renderer[T], outPath string, opts Options, ...) (cancel func(), err error) + type Hook func(ctx context.Context, outPath string) error + func HTTPGet(url string) Hook + func ReloadSystemd(unit string) Hook + func SignalProcess(pidFile string, sig os.Signal) Hook + type Options struct + FileMode os.FileMode + HookTimeout time.Duration + OnError func(err error) + SkipFirstHook bool + type Renderer interface + Render func(value *T) ([]byte, error) + func GoTemplate[T any](tmplPath string, funcs template.FuncMap) (Renderer[T], error) + type RendererFunc func(*T) ([]byte, error) + func (f RendererFunc[T]) Render(v *T) ([]byte, error)