mirror of
https://github.com/PretendoNetwork/super-mario-maker.git
synced 2026-08-01 16:04:45 -05:00
21 lines
294 B
Go
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()
|
|
}
|