sshpong/cmd/server/main.go
2024-08-26 10:02:05 -06:00

18 lines
195 B
Go

package main
import (
"fmt"
"sshpong/internal/netwrk"
)
var exit chan bool
func main() {
fmt.Println("Starting sshpong server!")
netwrk.LobbyListen()
netwrk.GamesListen()
_ = <-exit
}