mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
15 lines
348 B
Go
15 lines
348 B
Go
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
// See License.txt for license information.
|
||
|
|
||
|
package einterfaces
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/mattermost/mattermost-server/model"
|
||
|
)
|
||
|
|
||
|
type MessageExportInterface interface {
|
||
|
StartSynchronizeJob(ctx context.Context, exportFromTimestamp int64) (*model.Job, *model.AppError)
|
||
|
}
|