mirror of
https://github.com/PretendoNetwork/splatoon.git
synced 2026-03-22 01:54:26 -05:00
20 lines
232 B
Go
20 lines
232 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/PretendoNetwork/splatoon/nex"
|
|
)
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
func main() {
|
|
wg.Add(2)
|
|
|
|
// TODO - Add gRPC server
|
|
go nex.StartAuthenticationServer()
|
|
go nex.StartSecureServer()
|
|
|
|
wg.Wait()
|
|
}
|