mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-30 08:36:54 +02:00
22 lines
797 B
Go
22 lines
797 B
Go
package app
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-octo-tasks/server/services/config"
|
|
"github.com/mattermost/mattermost-octo-tasks/server/services/store"
|
|
"github.com/mattermost/mattermost-octo-tasks/server/webhook"
|
|
"github.com/mattermost/mattermost-octo-tasks/server/ws"
|
|
"github.com/mattermost/mattermost-server/v5/services/filesstore"
|
|
)
|
|
|
|
type App struct {
|
|
config *config.Configuration
|
|
store store.Store
|
|
wsServer *ws.Server
|
|
filesBackend filesstore.FileBackend
|
|
webhook *webhook.WebhookClient
|
|
}
|
|
|
|
func New(config *config.Configuration, store store.Store, wsServer *ws.Server, filesBackend filesstore.FileBackend, webhook *webhook.WebhookClient) *App {
|
|
return &App{config: config, store: store, wsServer: wsServer, filesBackend: filesBackend, webhook: webhook}
|
|
}
|