mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-10 22:34:02 -05:00
14 lines
492 B
Go
14 lines
492 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package einterfaces
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
)
|
|
|
|
type MessageExportInterface interface {
|
|
StartSynchronizeJob(c request.CTX, exportFromTimestamp int64) (*model.Job, *model.AppError)
|
|
RunExport(c request.CTX, format string, since int64, limit int) (int64, *model.AppError)
|
|
}
|