friends/main.go
light b0215272ce Update other files
Update other main files to add more functionality
2023-02-23 21:02:04 -05:00

17 lines
156 B
Go

package main
import (
"sync"
)
var wg sync.WaitGroup
func main() {
wg.Add(2)
go startGRPCServer()
go startNEXServer()
wg.Wait()
}