From 5d323fce01baffa44761428ebe3ad9ee46081de7 Mon Sep 17 00:00:00 2001 From: Barry Deen Date: Tue, 24 Sep 2024 11:34:41 -0400 Subject: [PATCH] remove temp service url --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 91bd2c4..d6e91a2 100644 --- a/main.go +++ b/main.go @@ -47,8 +47,6 @@ func main() { handler := http.HandlerFunc(dynamicRelayHandler) - chatRelay.ServiceURL = "http://localhost:3355/chat" - log.Printf("🔗 listening at http://localhost:3355") http.ListenAndServe("0.0.0.0:3355", handler) }