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