super-mario-maker/main.go
2025-02-19 22:53:57 -05:00

20 lines
241 B
Go

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