pikmin-3/main.go
2023-07-05 05:46:19 -04:00

20 lines
232 B
Go

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