mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
13 lines
322 B
Go
13 lines
322 B
Go
package model
|
|
|
|
type TerminalForm struct {
|
|
Protocol string `json:"protocol,omitempty"`
|
|
ServerID uint64 `json:"server_id,omitempty"`
|
|
}
|
|
|
|
type CreateTerminalResponse struct {
|
|
SessionID string `json:"session_id,omitempty"`
|
|
ServerID uint64 `json:"server_id,omitempty"`
|
|
ServerName string `json:"server_name,omitempty"`
|
|
}
|