From 66a32af19878f8fc341c4e74b9324ea3e7c90b84 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 12 Nov 2023 02:50:19 -0500 Subject: chore: refactor lint/format config --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/index.ts') diff --git a/src/index.ts b/src/index.ts index 5846a97..397dd30 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,7 +11,9 @@ app.use("*", logger()); app.use("*", prettyJSON()); app.get("/", (c) => { - return c.redirect(c.env.REDIRECT_ROOT ?? "https://github.com/getchoo/teawieAPI"); + return c.redirect( + c.env.REDIRECT_ROOT ?? "https://github.com/getchoo/teawieAPI", + ); }); app.get("/static/*", async (c) => { -- cgit v1.2.3