This repository has been archived on 2018-03-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

13 lines
242 B
Go
Raw Permalink Normal View History

2016-04-24 03:42:50 +02:00
// utility.go
package modules
func GeneratePayload(target string, icon string, text string, botname string) Payload {
payload := Payload{
Channel: target,
IconEmoji: icon,
Text: text,
Username: botname,
}
return payload
}