sshpong/cmd/server/main.go
2024-08-23 11:59:19 -06:00

17 lines
173 B
Go

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