mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-04 01:39:20 +08:00
16 lines
480 B
Go
16 lines
480 B
Go
package dto
|
|
|
|
type SSHInfo struct {
|
|
Port string `json:"port"`
|
|
ListenAddress string `json:"listenAddress"`
|
|
PasswordAuthentication string `json:"passwordAuthentication"`
|
|
PubkeyAuthentication string `json:"pubkeyAuthentication"`
|
|
PermitRootLogin string `json:"permitRootLogin"`
|
|
UseDNS string `json:"useDNS"`
|
|
}
|
|
|
|
type GenerateSSH struct {
|
|
EncryptionMode string `json:"encryptionMode"`
|
|
Password string `json:"password"`
|
|
}
|