twifeur/api/login.ts
2024-05-24 13:04:36 +02:00

7 lines
305 B
TypeScript

import { Context } from "https://deno.land/x/hono@v4.3.10/mod.ts";
import { Env } from "https://deno.land/x/hono@v4.3.10/mod.ts";
import { BlankInput } from "https://deno.land/x/hono@v4.3.10/types.ts";
export function login_route(context: Context<Env, string, BlankInput>) {
return context.text("E");
}