Files
beszel/beszel/internal/entities/server/server.go
2024-08-11 13:41:57 -04:00

18 lines
233 B
Go

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,
}
}