sshpong/cmd/server/main.go

18 lines
195 B
Go
Raw Normal View History

2024-08-03 11:05:14 -06:00
package main
import (
"fmt"
2024-08-05 18:00:41 -06:00
"sshpong/internal/netwrk"
2024-08-03 11:05:14 -06:00
)
2024-08-15 20:08:23 -06:00
var exit chan bool
2024-08-03 11:05:14 -06:00
func main() {
2024-08-05 18:00:41 -06:00
fmt.Println("Starting sshpong server!")
2024-08-03 11:05:14 -06:00
2024-08-23 11:59:19 -06:00
netwrk.LobbyListen()
2024-08-26 10:02:05 -06:00
netwrk.GamesListen()
2024-08-14 23:33:05 -06:00
2024-08-15 20:08:23 -06:00
_ = <-exit
2024-08-03 11:05:14 -06:00
}