mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-04-20 08:17:27 -05:00
Rename matchmaking to serverbrowser
This commit is contained in:
parent
2fb7d43c31
commit
3eda89331e
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"
|
||||
Loading…
Reference in New Issue
Block a user