This repository has been archived on 2026-07-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
codespace/internal/model/workspace.go
T
2026-07-02 15:07:54 +08:00

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"`
}