summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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) => {