-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
44 lines (36 loc) · 892 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
"github.com/bwmarrin/discordgo"
)
var (
// TokenPrefix Tokenは先頭にBotという文字が必要
TokenPrefix = "Bot "
// BotName = "<@777372032333119509>"
)
func main() {
// インスタンス生成
discord, err := discordgo.New(TokenPrefix + os.Getenv("DISCORD_TOKEN"))
if err != nil {
fmt.Println(err)
os.Exit(0)
}
discord.AddHandler(PingHandler)
discord.AddHandler(DownloadPixivImg)
discord.AddHandler(downloadTwitterImgHandler)
// WebSocket開始
err = discord.Open()
if err != nil {
fmt.Println(err)
}
// サーバー開始時の処理
fmt.Println("Start Listening...\nPress CTRL-C to exit.")
// bot終了用の処理
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
discord.Close()
}