super-mario-maker/main.go
2026-07-31 21:51:08 +02:00

21 lines
294 B
Go

package main
import (
"sync"
"github.com/PretendoNetwork/super-mario-maker/grpc"
"github.com/PretendoNetwork/super-mario-maker/nex"
)
var wg sync.WaitGroup
func main() {
wg.Add(2)
go grpc.StartGRPCServer()
go nex.StartAuthenticationServer()
go nex.StartSecureServer()
wg.Wait()
}