From ee03185b22499a696d07aab718fa613e7656205b Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Tue, 9 Nov 2021 14:19:28 +0100 Subject: [PATCH] add support for json driver --- ocis-pkg/config/helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ocis-pkg/config/helpers.go b/ocis-pkg/config/helpers.go index 08dd5ed75..8cb6e0079 100644 --- a/ocis-pkg/config/helpers.go +++ b/ocis-pkg/config/helpers.go @@ -17,11 +17,11 @@ var ( ".config/", } - // supportedExtensions is determined by gookit/config. For the purposes of the PR MVP we will focus on yaml, looking - // into extending it to all supported drivers. + // supportedExtensions is determined by gookit/config. supportedExtensions = []string{ "yaml", "yml", + "json", } )