Files
TeleUploader/src/routes/home.ts
T

10 lines
260 B
TypeScript
Raw Normal View History

export const handleHome = async (): Promise<Response> => {
const html = await Bun.file(import.meta.dir + '/../home.html').text();
return new Response(html, {
status: 200,
headers: {
'content-type': 'text/html; charset=utf-8',
},
});
};