sshpong/cmd/server/main.go

13 lines
135 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
)
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-05 18:00:41 -06:00
netwrk.Listen()
2024-08-03 11:05:14 -06:00
}