2020-10-16 19:12:53 +02:00
|
|
|
package app
|
2020-10-16 16:21:42 +02:00
|
|
|
|
2020-10-16 16:36:08 +02:00
|
|
|
import (
|
2021-01-26 23:13:46 +01:00
|
|
|
"github.com/mattermost/focalboard/server/services/config"
|
|
|
|
"github.com/mattermost/focalboard/server/services/store"
|
|
|
|
"github.com/mattermost/focalboard/server/services/webhook"
|
|
|
|
"github.com/mattermost/focalboard/server/ws"
|
2020-10-16 20:16:52 +02:00
|
|
|
"github.com/mattermost/mattermost-server/v5/services/filesstore"
|
2020-10-16 16:36:08 +02:00
|
|
|
)
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
type App struct {
|
2020-10-16 20:16:52 +02:00
|
|
|
config *config.Configuration
|
|
|
|
store store.Store
|
2020-10-22 13:34:42 +02:00
|
|
|
wsServer *ws.Server
|
2020-10-16 20:16:52 +02:00
|
|
|
filesBackend filesstore.FileBackend
|
2020-10-29 21:42:43 +01:00
|
|
|
webhook *webhook.Client
|
2020-10-16 19:12:53 +02:00
|
|
|
}
|
|
|
|
|
2020-10-29 21:42:43 +01:00
|
|
|
func New(config *config.Configuration, store store.Store, wsServer *ws.Server, filesBackend filesstore.FileBackend, webhook *webhook.Client) *App {
|
2020-10-29 21:09:02 +01:00
|
|
|
return &App{config: config, store: store, wsServer: wsServer, filesBackend: filesBackend, webhook: webhook}
|
2020-10-16 16:21:42 +02:00
|
|
|
}
|