summaryrefslogtreecommitdiffstats
path: root/plugin/context.go
blob: ec3f8b65ecfc394c1e9c85acf37b80329c42cb78 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

package plugin

// Context passes through metadata about the request or hook event.
//
// It is currently a placeholder while the implementation details are sorted out.
type Context struct {
	SessionId string
}