mirror of
https://github.com/mattermost/mattermost.git
synced 2026-09-19 10:12:47 +08:00
10 lines
275 B
Go
10 lines
275 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
// OnInstallEvent is sent to the plugin when it gets installed.
|
|
type OnInstallEvent struct {
|
|
UserId string // The user who installed the plugin
|
|
}
|