mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-23 08:51:04 +01:00
7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
|
export default {
|
||
|
fetch: (request: Request) => {
|
||
|
console.log(request);
|
||
|
return new Response("asda");
|
||
|
},
|
||
|
};
|