8 lines
129 B
Go
8 lines
129 B
Go
|
package types
|
||
|
|
||
|
import "github.com/slack-go/slack"
|
||
|
|
||
|
type SlackAttachmentCreator interface {
|
||
|
SlackAttachment() slack.Attachment
|
||
|
}
|