summaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-12 02:50:19 -0500
committerseth <[email protected]>2023-11-12 02:50:58 -0500
commit66a32af19878f8fc341c4e74b9324ea3e7c90b84 (patch)
tree2bb303d8ed2fa82b29665eb04dac3fdc2cd0d59c /src/index.ts
parent7a6fccc7b858b5497858913befb1facbe83510f2 (diff)
chore: refactor lint/format config
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 3 insertions, 1 deletions
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) => {