-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
56 lines (45 loc) · 917 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 (
"errors"
"fmt"
"log"
"os"
"github.com/skar404/telegram-get-id/bot"
"github.com/skar404/telegram-get-id/utils"
)
type Setting struct {
Mod string
Debug bool
}
func initEnv() (Setting, error) {
// Init
s := Setting{
Mod: os.Getenv("MOD"),
}
if utils.StringInSlice(os.Getenv("DEBUG"), []string{"True", "true", "1"}) {
s.Debug = true
}
// Validate:
if !utils.StringInSlice(s.Mod, []string{"WEB_HOOK", "GET_UPDATES"}) {
return s, errors.New(fmt.Sprintf("not Valid env MOD=%s", s.Mod))
}
return s, nil
}
func main() {
env, err := initEnv()
if err != nil {
log.Fatalln(err)
}
log.Println(fmt.Sprintf("Start app, mod: %s", env.Mod))
myBot := bot.Config{
Mod: env.Mod,
BotToken: os.Getenv("BOT_TOKEN"),
AppHost: os.Getenv("APP_HOST"),
AppPort: os.Getenv("PORT"),
Debug: env.Debug,
}
err = myBot.Start()
if err != nil {
log.Fatal(err)
}
}