Skip to content

Commit 7c36043

Browse files
committed
Remove imports from matching-service (was added during merge)
1 parent 1d3afe7 commit 7c36043

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

apps/matching-service/main.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package main
22

33
import (
4-
"context"
54
"fmt"
65
"log"
76
"matching-service/handlers"
@@ -10,7 +9,6 @@ import (
109
"os"
1110

1211
"github.com/joho/godotenv"
13-
"github.com/redis/go-redis/v9"
1412
)
1513

1614
func main() {
@@ -19,15 +17,15 @@ func main() {
1917
if err != nil {
2018
log.Fatalf("err loading: %v", err)
2119
}
22-
20+
2321
// Setup redis client
2422
processes.SetupRedisClient()
2523

2624
// Run a goroutine that matches users
27-
25+
2826
// Routes
2927
http.HandleFunc("/match", handlers.HandleWebSocketConnections)
30-
28+
3129
// Start the server
3230
port := os.Getenv("PORT")
3331
log.Println(fmt.Sprintf("Server starting on :%s", port))

0 commit comments

Comments
 (0)