mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 03:00:42 +00:00
17 lines
311 B
Go
17 lines
311 B
Go
package host
|
|
|
|
type CreateMachineRequest struct {
|
|
MachineID MachineID `json:"machine_id"`
|
|
}
|
|
|
|
type CreateMachineResponse struct {
|
|
Machine Machine `json:"machine"`
|
|
}
|
|
|
|
type GetMachineResponse struct {
|
|
Machine Machine `json:"machine"`
|
|
}
|
|
|
|
type ListMachinesResponse struct {
|
|
Machines []Machine `json:"machines"`
|
|
}
|