(pds string, uri string)
| 1687 | } |
| 1688 | |
| 1689 | func GetRecordWithUri(pds string, uri string) (*RecordResponse, error) { |
| 1690 | collection, repo, rkey := GetURIComponents(uri) |
| 1691 | return GetRecord(pds, collection, repo, rkey) |
| 1692 | } |
| 1693 | |
| 1694 | func GetRecord(pds string, collection string, repo string, rkey string) (*RecordResponse, error) { |
| 1695 |
nothing calls this directly
no test coverage detected