From 1ec37c7fcf7e262c9cba10f3a877c311587c7deb Mon Sep 17 00:00:00 2001 From: shoopea Date: Sun, 21 Jun 2020 19:54:01 +0200 Subject: [PATCH] test --- main.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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))