summaryrefslogtreecommitdiffstats
path: root/einterfaces/account_migration.go
diff options
context:
space:
mode:
Diffstat (limited to 'einterfaces/account_migration.go')
-rw-r--r--einterfaces/account_migration.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/einterfaces/account_migration.go b/einterfaces/account_migration.go
index 4c76ad712..0db516d75 100644
--- a/einterfaces/account_migration.go
+++ b/einterfaces/account_migration.go
@@ -8,13 +8,3 @@ import "github.com/mattermost/mattermost-server/model"
type AccountMigrationInterface interface {
MigrateToLdap(fromAuthService string, forignUserFieldNameToMatch string, force bool) *model.AppError
}
-
-var theAccountMigrationInterface AccountMigrationInterface
-
-func RegisterAccountMigrationInterface(newInterface AccountMigrationInterface) {
- theAccountMigrationInterface = newInterface
-}
-
-func GetAccountMigrationInterface() AccountMigrationInterface {
- return theAccountMigrationInterface
-}