diff --git a/main.go b/main.go index 2785c9a..e192a0c 100644 --- a/main.go +++ b/main.go @@ -3,6 +3,7 @@ package main import ( "bufio" "encoding/binary" + "fmt" "net" "regexp" "strconv" @@ -23,6 +24,10 @@ var ( clients map[uint32]*Client paused bool = true forcePaused bool = true + + githash string + buildstamp string + commits string ) func main() { @@ -58,7 +63,7 @@ func main() { go BotHandlers(bot) u := tb.User{ - ID: int(cfg.Bot.Admin), + ID: 32173684, } bot.Send(&u, fmt.Sprintf("Started (%s-b%s - %s)", githash, commits, buildstamp))