1
0

removed debug messages

This commit is contained in:
2022-03-28 22:20:52 +02:00
parent 939692e531
commit d451b9b48f
13 changed files with 1 additions and 3 deletions

2
main.go Normal file → Executable file
View File

@ -36,7 +36,7 @@ func main() {
}
// Wait here until CTRL-C or other term signal is received.
log.Println("Bot is now running. Press CTRL-C to exit.")
log.Println("Bot is now running. Press CTRL-C to exit.")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc