added missing file

This commit is contained in:
balzack 2022-10-25 08:58:12 -07:00
parent 43bf6d0d04
commit 38e7acf5ea

View File

@ -0,0 +1,9 @@
import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function getCard(server, token, cardId) {
let param = "?agent=" + token
let card = await fetchWithTimeout(`https://${server}/contact/cards/${cardId}${param}`, { method: 'GET' });
checkResponse(card);
return await card.json()
}