initial commit
This commit is contained in:
18
lib/sender.discord.go
Normal file
18
lib/sender.discord.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package lib
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type DiscordSender struct {
|
||||
Config Config
|
||||
}
|
||||
|
||||
func (d DiscordSender) Send(msg string) {
|
||||
fmt.Printf("Send to Discord: %s\n", msg)
|
||||
b, _ := json.Marshal(map[string]string{"content": msg})
|
||||
http.Post(d.Config.Webhook, "application/json", bytes.NewBuffer(b))
|
||||
}
|
||||
Reference in New Issue
Block a user