Files
oslstats/internal/rbac/ezconf.go
2026-02-25 22:47:33 +11:00

12 lines
277 B
Go

package rbac
import (
"git.haelnorr.com/h/golib/ezconf"
)
// NewEZConfIntegration creates a new EZConf integration
func NewEZConfIntegration() *ezconf.Integration {
return ezconf.NewIntegration("rbac", "RBAC", &Config{},
func() (any, error) { return ConfigFromEnv() })
}