summaryrefslogtreecommitdiffstats
path: root/plugin/request_context.go
blob: a7a3d89fdddd9af1309dcab1c842ade1ae75c170 (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

type Context struct {
}

func NewBlankContext() *Context {
	return &Context{}
}