(ctx context.Context, id uuid.UUID)
| 115 | } |
| 116 | |
| 117 | func (s aiTaskStoreWrapper) GetWorkspaceByID(ctx context.Context, id uuid.UUID) (database.Workspace, error) { |
| 118 | if s.getWorkspaceByID != nil { |
| 119 | return s.getWorkspaceByID(ctx, id) |
| 120 | } |
| 121 | return s.Store.GetWorkspaceByID(ctx, id) |
| 122 | } |
| 123 | |
| 124 | func (s aiTaskStoreWrapper) InsertWorkspaceBuild(ctx context.Context, arg database.InsertWorkspaceBuildParams) error { |
| 125 | if s.insertWorkspaceBuild != nil { |
nothing calls this directly
no test coverage detected