feat: command menu

This commit is contained in:
iCrawl
2022-09-09 00:08:59 +02:00
parent f9e9bfdedc
commit 96304d7cc8
14 changed files with 272 additions and 35 deletions

View File

@@ -0,0 +1,4 @@
export const fetcher = async (url: string) => {
const res = await fetch(url);
return res.json();
};