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
import (
"fmt"
"os"
"strings"
@ -70,7 +69,6 @@ func GetWechatKeyword() *string {
func GetTelegram() *string {
tg := getEnv("telegram")
fmt.Println(tg)
if tg != nil {
return tg
}