Skip to content

Commit

Permalink
feat: add interfaces for workspaces client
Browse files Browse the repository at this point in the history
Signed-off-by: SuZhoue-Joe <[email protected]>
  • Loading branch information
SuZhou-Joe committed Jun 8, 2023
1 parent eed7a7c commit 0860a9c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/core/public/workspace/workspaces_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ export class WorkspacesClient {
};
}

public async getCurrentWorkspaceId(): Promise<IResponse<WorkspaceAttribute['id']>> {
return {
success: false,
error: 'Unimplement',
};
}

public async getCurrentWorkspace(): Promise<IResponse<WorkspaceAttribute>> {
return {
success: false,
Expand Down

0 comments on commit 0860a9c

Please sign in to comment.