updated to use new hws version

This commit is contained in:
2026-02-03 19:11:59 +11:00
parent 563908bbb4
commit 525b3b1396
8 changed files with 49 additions and 26 deletions

View File

@@ -13,8 +13,8 @@ func (e EZConfIntegration) PackagePath() string {
}
// ConfigFunc returns the ConfigFromEnv function for ezconf
func (e EZConfIntegration) ConfigFunc() func() (interface{}, error) {
return func() (interface{}, error) {
func (e EZConfIntegration) ConfigFunc() func() (any, error) {
return func() (any, error) {
return ConfigFromEnv()
}
}