refactor: hub

This commit is contained in:
Henry Dollman
2024-08-14 11:28:43 -04:00
parent f8d2161489
commit 083da9598e
2 changed files with 78 additions and 105 deletions

View File

@@ -1,17 +0,0 @@
package server
import "golang.org/x/crypto/ssh"
type Server struct {
Host string
Port string
Status string
Client *ssh.Client
}
func NewServer(host, port string) *Server {
return &Server{
Host: host,
Port: port,
}
}