Files
sshpong/cmd/server/main.go
T
Beric Bearnson a6807d79a6 Add protobuf shit
2024-08-05 18:00:41 -06:00

13 lines
135 B
Go

package main
import (
"fmt"
"sshpong/internal/netwrk"
)
func main() {
fmt.Println("Starting sshpong server!")
netwrk.Listen()
}