mirror of
https://github.com/status-im/matterbridge.git
synced 2025-02-12 22:16:46 +00:00
* 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"`
|
|
}
|