Skip to content

Commit

Permalink
fix: rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
tituschewxj committed Oct 11, 2024
1 parent c36b0e7 commit 3e4caa6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/matching-service/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module matcghing-service
module matching-service

go 1.23.1

Expand Down
6 changes: 3 additions & 3 deletions apps/matching-service/handlers/websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package handlers
import (
"context"
"log"
"matcghing-service/models"
"matcghing-service/processes"
"matcghing-service/utils"
"matching-service/models"
"matching-service/processes"
"matching-service/utils"
"net/http"

"github.com/gorilla/websocket"
Expand Down
2 changes: 1 addition & 1 deletion apps/matching-service/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"
"log"
"matcghing-service/handlers"
"matching-service/handlers"
"net/http"
"os"

Expand Down
2 changes: 1 addition & 1 deletion apps/matching-service/processes/match.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package processes

import (
"context"
"matcghing-service/models"
"matching-service/models"
"time"
)

Expand Down

0 comments on commit 3e4caa6

Please sign in to comment.