mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 03:07:20 +08:00
9 lines
227 B
Go
9 lines
227 B
Go
package request
|
|
|
|
type SSHUpdateInfo struct {
|
|
Host string `json:"host" form:"host"`
|
|
Port int `json:"port" form:"port"`
|
|
User string `json:"user" form:"user"`
|
|
Password string `json:"password" form:"password"`
|
|
}
|