about summary refs log tree commit diff stats
path: root/internal/config/fetcher.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/fetcher.go')
-rw-r--r--internal/config/fetcher.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/config/fetcher.go b/internal/config/fetcher.go
index a01abbd..fd95b32 100644
--- a/internal/config/fetcher.go
+++ b/internal/config/fetcher.go
@@ -47,3 +47,7 @@ func (f *Fetcher) UnmarshalText(text []byte) error {
 
 	return err
 }
+
+func (f *Fetcher) MarshalText() ([]byte, error) {
+	return []byte(f.String()), nil
+}