(ctx context.Context, ws Workspace)
| 5 | // Store persists and looks up registered workspaces. |
| 6 | type Store interface { |
| 7 | InsertWorkspace(ctx context.Context, ws Workspace) error |
| 8 | UpdateWorkspace(ctx context.Context, ws Workspace) error |
| 9 | DeleteWorkspace(ctx context.Context, id string) error |
| 10 | GetWorkspace(ctx context.Context, id string) (Workspace, error) |
no outgoing calls