// Copyright (c) 2024 Mattermost Community Enterprise // Registration of LDAP implementation package ldap import ( "github.com/mattermost/mattermost/server/v8/channels/app" "github.com/mattermost/mattermost/server/v8/einterfaces" enterpriseldap "github.com/mattermost-community/enterprise/ldap" ) func init() { app.RegisterLdapInterface(NewLdapInterface) } func NewLdapInterface(a *app.App) einterfaces.LdapInterface { return enterpriseldap.NewLdapInterface(a.Config, a.Log()) }