remove fmt.Println() from GetTelegram config

This commit is contained in:
sunrise 2023-02-10 04:39:20 +08:00
parent 025f2306a3
commit 791003654a

View File

@ -1,7 +1,6 @@
package config package config
import ( import (
"fmt"
"os" "os"
"strings" "strings"
@ -70,7 +69,6 @@ func GetWechatKeyword() *string {
func GetTelegram() *string { func GetTelegram() *string {
tg := getEnv("telegram") tg := getEnv("telegram")
fmt.Println(tg)
if tg != nil { if tg != nil {
return tg return tg
} }