focalboard/server/app/app.go

38 lines
900 B
Go
Raw Normal View History

package app
2020-10-16 16:21:42 +02:00
2020-10-16 16:36:08 +02:00
import (
2021-02-02 21:11:21 +01:00
"github.com/mattermost/focalboard/server/auth"
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"
"github.com/mattermost/mattermost-server/v5/shared/filestore"
2020-10-16 16:36:08 +02:00
)
2020-10-16 16:21:42 +02:00
type App struct {
config *config.Configuration
store store.Store
2021-02-02 21:11:21 +01:00
auth *auth.Auth
wsServer *ws.Server
filesBackend filestore.FileBackend
2020-10-29 21:42:43 +01:00
webhook *webhook.Client
}
2021-02-02 21:11:21 +01:00
func New(
config *config.Configuration,
store store.Store,
auth *auth.Auth,
wsServer *ws.Server,
filesBackend filestore.FileBackend,
2021-02-02 21:11:21 +01:00
webhook *webhook.Client,
) *App {
return &App{
config: config,
store: store,
auth: auth,
wsServer: wsServer,
filesBackend: filesBackend,
webhook: webhook,
}
2020-10-16 16:21:42 +02:00
}