chore: build

This commit is contained in:
2026-06-12 10:47:30 +02:00
parent 1d96d558b9
commit cc278ecef5
3 changed files with 63 additions and 2 deletions
+2
View File
@@ -16,6 +16,7 @@ var LBTelegram *LBTelegramService
type LBTelegramService struct {
gatewayURL string
Bot1Username string
Bot2Username string
client *http.Client
}
@@ -27,6 +28,7 @@ func NewLBTelegramService() *LBTelegramService {
svc := &LBTelegramService{
gatewayURL: url,
Bot1Username: os.Getenv("LBTELEGRAM_BOT1_USERNAME"),
Bot2Username: os.Getenv("LBTELEGRAM_BOT2_USERNAME"),
client: &http.Client{Timeout: 10 * time.Second},
}
LBTelegram = svc