// ...imports
app.use(async (context, next) => {
try {
await context.send({
root: `${Deno.cwd()}/src/www/public`,
index: 'login.html',
});
} catch {
await next();
}
});
/// ...listen
// ...imports
app.use(async (context, next) => {
try {
await context.send({
root: `${Deno.cwd()}/src/www/public`,
index: 'login.html',
});
} catch {
await next();
}
});
/// ...listen