VerifyObject verifies that the given object is stored properly in a repository and returns backing content IDs.
(ctx context.Context, id object.ID)
| 221 | |
| 222 | // VerifyObject verifies that the given object is stored properly in a repository and returns backing content IDs. |
| 223 | func (r *directRepository) VerifyObject(ctx context.Context, id object.ID) ([]content.ID, error) { |
| 224 | //nolint:wrapcheck |
| 225 | return object.VerifyObject(ctx, r.cmgr, id) |
| 226 | } |
| 227 | |
| 228 | // GetManifest returns the given manifest data and metadata. |
| 229 | func (r *directRepository) GetManifest(ctx context.Context, id manifest.ID, data any) (*manifest.EntryMetadata, error) { |
nothing calls this directly
no test coverage detected