Rename matchmaking to serverbrowser

This commit is contained in:
mkwcat 2023-11-01 07:43:41 -04:00
parent 2fb7d43c31
commit 3eda89331e
No known key found for this signature in database
GPG Key ID: 7A505679CE9E7AA9
4 changed files with 5 additions and 5 deletions

View File

@ -4,14 +4,14 @@ import (
"sync"
"wwfc/gpcm"
"wwfc/gpsp"
"wwfc/matchmaking"
"wwfc/nas"
"wwfc/qr2"
"wwfc/serverbrowser"
)
func main() {
wg := &sync.WaitGroup{}
actions := []func(){nas.StartServer, gpcm.StartServer, qr2.StartServer, gpsp.StartServer, matchmaking.StartServer}
actions := []func(){nas.StartServer, gpcm.StartServer, qr2.StartServer, gpsp.StartServer, serverbrowser.StartServer}
wg.Add(5)
for _, action := range actions {
go func(ac func()) {

View File

@ -1,4 +1,4 @@
package matchmaking
package serverbrowser
import (
"github.com/logrusorgru/aurora/v3"

View File

@ -1,4 +1,4 @@
package matchmaking
package serverbrowser
import (
"bufio"

View File

@ -1,4 +1,4 @@
package matchmaking
package serverbrowser
import (
"encoding/binary"