sshpong/cmd/server/main.go
2024-08-15 20:08:23 -06:00

17 lines
168 B
Go

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