-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
42 lines (33 loc) · 760 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
package main
import (
"flag"
tgClient "go_projects/tg_bot/clients/telegram"
event_consumer "go_projects/tg_bot/consumer/event-consumer"
"go_projects/tg_bot/events/telegram"
"go_projects/tg_bot/storage/files"
"log"
)
const (
tgBotHost = "core.telegram.org"
storagePath = "storage"
batchSize = 100
)
func main() {
eventsPricessor := telegram.New(
tgClient.New(tgBotHost, mustToken()),
files.New(storagePath),
)
log.Print("service started")
consumer := event_consumer.New(eventsPricessor, eventsPricessor, batchSize)
if err := consumer.Start(); err != nil {
log.Fatal()
}
}
func mustToken() string {
token := flag.String("tg-bot-token", "", "token for access")
flag.Parse()
if *token == "" {
log.Fatal()
}
return *token
}