diff options
| author | seth <[email protected]> | 2023-11-12 02:50:19 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-12 02:50:58 -0500 |
| commit | 66a32af19878f8fc341c4e74b9324ea3e7c90b84 (patch) | |
| tree | 2bb303d8ed2fa82b29665eb04dac3fdc2cd0d59c /src | |
| parent | 7a6fccc7b858b5497858913befb1facbe83510f2 (diff) | |
chore: refactor lint/format config
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 4 |
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) => { |
