12 lines
265 B
Go
12 lines
265 B
Go
package model
|
|
|
|
// CreateWorkspaceRequest is the request body for creating a workspace.
|
|
type CreateWorkspaceRequest struct {
|
|
ID string `json:"id"`
|
|
}
|
|
|
|
// WorkspaceResponse is the API response for a workspace.
|
|
type WorkspaceResponse struct {
|
|
ID string `json:"id"`
|
|
}
|