mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package product
|
|
|
|
type ServiceKey string
|
|
|
|
const (
|
|
ChannelKey ServiceKey = "channel"
|
|
ConfigKey ServiceKey = "config"
|
|
LicenseKey ServiceKey = "license"
|
|
FilestoreKey ServiceKey = "filestore"
|
|
ExportFilestoreKey ServiceKey = "exportfilestore"
|
|
FileInfoStoreKey ServiceKey = "fileinfostore"
|
|
ClusterKey ServiceKey = "cluster"
|
|
CloudKey ServiceKey = "cloud"
|
|
PostKey ServiceKey = "post"
|
|
TeamKey ServiceKey = "team"
|
|
UserKey ServiceKey = "user"
|
|
PermissionsKey ServiceKey = "permissions"
|
|
RouterKey ServiceKey = "router"
|
|
BotKey ServiceKey = "bot"
|
|
LogKey ServiceKey = "log"
|
|
KVStoreKey ServiceKey = "kvstore"
|
|
StoreKey ServiceKey = "storekey"
|
|
SystemKey ServiceKey = "systemkey"
|
|
PreferencesKey ServiceKey = "preferenceskey"
|
|
SessionKey ServiceKey = "sessionkey"
|
|
FrontendKey ServiceKey = "frontendkey"
|
|
CommandKey ServiceKey = "commandkey"
|
|
ThreadsKey ServiceKey = "threadskey"
|
|
)
|