(commitDbUpdateUrl: string, assetCid: string, commitDbCommitUrl: string)
| 122 | } |
| 123 | |
| 124 | export async function push(commitDbUpdateUrl: string, assetCid: string, commitDbCommitUrl: string) { |
| 125 | const data = { |
| 126 | "assetCid": assetCid, |
| 127 | "dbEndpointUrl": commitDbCommitUrl, |
| 128 | }; |
| 129 | const r = await httpPost(commitDbUpdateUrl, data); |
| 130 | return r; |
| 131 | } |
nothing calls this directly
no test coverage detected