diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2020-05-21 22:14:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-21 22:14:10 -0400 |
| commit | 8a4530400a5f0aaec4f12dcd10cc1ea34b176894 (patch) | |
| tree | e373b2a70045db608777cfd2accae6a4c36ec77d /context.go | |
| parent | cea6c6ec234198ece9155077672193229d5093b7 (diff) | |
| parent | d954aa2edae91009fcc0b0eea5e622958a8d8b67 (diff) | |
Merge pull request #853 from hairyhenderson/deprecate-legacy-config
Deprecate legacy config struct
Diffstat (limited to 'context.go')
| -rw-r--r-- | context.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ func (c *tmplctx) Env() map[string]string { return env } -func createTmplContext(ctx context.Context, contexts config.DSources, d *data.Data) (interface{}, error) { +func createTmplContext(ctx context.Context, contexts map[string]config.DataSource, d *data.Data) (interface{}, error) { var err error tctx := &tmplctx{} for a := range contexts { |
