mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
20 lines
456 B
Go
20 lines
456 B
Go
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
|
// See LICENSE.txt for license information.
|
||
|
|
|
||
|
|
package scheduler
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/mattermost/mattermost-server/app"
|
||
|
|
tjobs "github.com/mattermost/mattermost-server/jobs/interfaces"
|
||
|
|
)
|
||
|
|
|
||
|
|
type PluginsJobInterfaceImpl struct {
|
||
|
|
App *app.App
|
||
|
|
}
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
app.RegisterJobsMigrationsJobInterface(func(a *app.App) tjobs.MigrationsJobInterface {
|
||
|
|
return &PluginsJobInterfaceImpl{a}
|
||
|
|
})
|
||
|
|
}
|