friends/main.go
Daniel López Guimaraes 2f80336681
Rename friends-secure to friends and remove Mongo
Replace MongoDB usage with GRPC calls to the account server. Also
include documentation on the README and a Makefile.
2023-08-13 01:05:08 +01:00

21 lines
294 B
Go

package main
import (
"sync"
"github.com/PretendoNetwork/friends/grpc"
"github.com/PretendoNetwork/friends/nex"
)
var wg sync.WaitGroup
func main() {
wg.Add(3)
go grpc.StartGRPCServer()
go nex.StartAuthenticationServer()
go nex.StartSecureServer()
wg.Wait()
}