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