mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 11:00:27 +00:00
6a3fc71397
* Update dependencies and go1.18 * Exclude unnecessary linters and update build to go1.18
8 lines
220 B
Go
8 lines
220 B
Go
package slack
|
|
|
|
// SlackMetadata https://api.slack.com/reference/metadata
|
|
type SlackMetadata struct {
|
|
EventType string `json:"event_type"`
|
|
EventPayload map[string]interface{} `json:"event_payload"`
|
|
}
|