logman/ssh.go

9 lines
114 B
Go
Raw Normal View History

2019-08-13 09:48:47 -05:00
package main
type sshConnection struct {
2019-08-13 10:10:18 -05:00
Username string
Password string
Port string
Hosts []string
2019-08-13 09:48:47 -05:00
}