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