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