This commit is contained in:
JOLIMAITRE Matthieu 2024-05-24 13:04:36 +02:00
parent 2737aadc7f
commit 8b6a86f17a
8 changed files with 95 additions and 10 deletions

7
api/login.ts Normal file
View file

@ -0,0 +1,7 @@
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");
}