summaryrefslogtreecommitdiffstats
path: root/model/job.go
blob: d539b5bf951a50d9d87e8df127b1f921b8d354dd (plain)
1
2
3
4
5
6
7
8
9
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

type Job interface {
	Run()
	Stop()
}