github.com/levb/mattermost-server@v5.3.1+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  }