-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.go
56 lines (45 loc) · 1017 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
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"log"
"net/http"
"os"
"github.com/PaulSonOfLars/gotgbot/v2"
"github.com/PaulSonOfLars/gotgbot/v2/ext"
"github.com/PaulSonOfLars/gotgbot/v2/ext/handlers"
"goBotBoilerplate/modules"
)
// Because why not?
func errPanic(err error) {
if err != nil {
panic(err.Error())
}
}
func main() {
var TOKEN string
// Use TOKEN passed via args else fallback to ENV
if len(os.Args) == 2 {
TOKEN = os.Args[1]
} else {
TOKEN = os.Getenv("TOKEN")
}
bot, err := gotgbot.NewBot(
TOKEN,
&gotgbot.BotOpts{
Client: http.Client{},
GetTimeout: gotgbot.DefaultGetTimeout,
PostTimeout: gotgbot.DefaultPostTimeout,
})
errPanic(err) // Panic if there's an error
updater := ext.NewUpdater(nil)
dispatcher := updater.Dispatcher
dispatcher.AddHandler(handlers.NewCommand("start", start.Start))
err = updater.StartPolling(bot, &ext.PollingOpts{})
errPanic(err)
startMsg :=
`
----------------
| Bot Started! |
----------------`
log.Println(startMsg)
updater.Idle()
}