github.com/turgay/mattermost-server@v5.3.2-0.20181002173352-2945e8a2b0ce+incompatible/plugin/context.go (about) 1 // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. 2 // See LICENSE.txt for license information. 3 4 package plugin 5 6 // Context passes through metadata about the request or hook event. 7 // 8 // It is currently a placeholder while the implementation details are sorted out. 9 type Context struct { 10 SessionId string 11 }