From 6c836dafe39916eb24081f6de15c6b6d42a487f7 Mon Sep 17 00:00:00 2001 From: Akulij Date: Tue, 25 Mar 2025 12:01:10 +0800 Subject: [PATCH] fix: print admin id instead of its address --- cmd/app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/app/main.go b/cmd/app/main.go index f97c393..a99501a 100644 --- a/cmd/app/main.go +++ b/cmd/app/main.go @@ -27,7 +27,7 @@ func GetBotController() BotController { cfg := config.GetConfig() fmt.Printf("Token value: '%v'\n", cfg.BotToken) fmt.Printf("Admin password: '%v'\n", cfg.AdminPass) - fmt.Printf("Admin ID: '%v'\n", cfg.AdminID) + fmt.Printf("Admin ID: '%v'\n", *cfg.AdminID) bot, err := tgbotapi.NewBotAPI(cfg.BotToken) if err != nil {