9 lines
233 B
Go
9 lines
233 B
Go
package model
|
|
|
|
// ShellStatusResponse is the API response for shell status.
|
|
type ShellStatusResponse struct {
|
|
WorkspaceID string `json:"workspaceId"`
|
|
Running bool `json:"running"`
|
|
PID int `json:"pid,omitempty"`
|
|
}
|