Files
mostlymatter/jobs/interfaces/extract_content_interface.go
2021-08-04 11:10:53 +02:00

13 строки
267 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package interfaces
import (
"github.com/mattermost/mattermost-server/v6/model"
)
type ExtractContentInterface interface {
MakeWorker() model.Worker
}