add support for json driver

This commit is contained in:
A.Unger
2021-11-09 14:19:28 +01:00
parent c335c4dc29
commit ee03185b22

View File

@@ -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",
}
)