(ctx context.Context, repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage)
| 81 | } |
| 82 | |
| 83 | func (*store) CreateLFSObject(ctx context.Context, repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage) error { |
| 84 | return database.Handle.LFS().CreateObject(ctx, repoID, oid, size, storage) |
| 85 | } |
| 86 | |
| 87 | func (*store) GetLFSObjectByOID(ctx context.Context, repoID int64, oid lfsutil.OID) (*database.LFSObject, error) { |
| 88 | return database.Handle.LFS().GetObjectByOID(ctx, repoID, oid) |
nothing calls this directly
no test coverage detected