mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-09-25 00:35:32 -05:00
Rename matchmaking to serverbrowser
This commit is contained in:
4
main.go
4
main.go
@@ -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()) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package matchmaking
|
||||
package serverbrowser
|
||||
|
||||
import (
|
||||
"github.com/logrusorgru/aurora/v3"
|
||||
@@ -1,4 +1,4 @@
|
||||
package matchmaking
|
||||
package serverbrowser
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
@@ -1,4 +1,4 @@
|
||||
package matchmaking
|
||||
package serverbrowser
|
||||
|
||||
import (
|
||||
"encoding/binary"
|
||||
Reference in New Issue
Block a user