From 09e0fb6da3d3c07a200f46c5b6bf1ab346f6a24b Mon Sep 17 00:00:00 2001 From: RaviAnand Mohabir Date: Fri, 21 May 2021 13:12:52 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Export=20auth=20API=20routes=20from?= =?UTF-8?q?=20app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/routes/api/auth/[...auth].ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 app/src/routes/api/auth/[...auth].ts diff --git a/app/src/routes/api/auth/[...auth].ts b/app/src/routes/api/auth/[...auth].ts new file mode 100644 index 0000000..302ac3f --- /dev/null +++ b/app/src/routes/api/auth/[...auth].ts @@ -0,0 +1,3 @@ +import { appAuth } from "$lib/appAuth"; + +export const { get, post } = appAuth;