10 lines
269 B
Go
10 lines
269 B
Go
package hws
|
|
|
|
import "git.haelnorr.com/h/golib/ezconf"
|
|
|
|
// NewEZConfIntegration creates a new EZConf integration
|
|
func NewEZConfIntegration() *ezconf.Integration {
|
|
return ezconf.NewIntegration("hws", "HWS",
|
|
&Config{}, func() (any, error) { return ConfigFromEnv() })
|
|
}
|