mirror of
https://github.com/PretendoNetwork/wiiu-chat-secure.git
synced 2026-04-25 15:58:14 -05:00
19 lines
219 B
Go
19 lines
219 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/PretendoNetwork/wiiu-chat-secure/nex"
|
|
)
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
func main() {
|
|
wg.Add(1)
|
|
|
|
// TODO - Add gRPC server
|
|
go nex.StartNEXServer()
|
|
|
|
wg.Wait()
|
|
}
|