From c01d965ad77ba352724d87b182bc68f68879a1c6 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Mon, 16 Nov 2020 23:57:46 -0600 Subject: [PATCH] Fix TOML tags Signed-off-by: jolheiser --- registry/registry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/registry.go b/registry/registry.go index 32c2e7c..9303e02 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -17,8 +17,8 @@ import ( // Registry is a collection of Template type Registry struct { dir string - Sources []*Source - Templates []*Template + Sources []*Source `toml:"sources"` + Templates []*Template `toml:"templates"` } func (r *Registry) save() error {