7 lines
305 B
TypeScript
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");
|
|
}
|