15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
export const get = async (url: string) => {
|
|
const resp = await fetch(url);
|
|
const json = await resp.json();
|
|
return json;
|
|
};
|
|
export const post = async (url: string, json: any) => {
|
|
const resp = await fetch(url, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify(json),
|
|
});
|
|
const result = await resp.json();
|
|
return result;
|
|
};
|