commit 139815acf0c32a4dfc38c9149cdfae047f2d9144 Author: Caleb Braaten Date: Wed Feb 7 06:44:41 2024 -0800 Temporary Domain Name Redirect Service diff --git a/index.js b/index.js new file mode 100644 index 0000000..813880b --- /dev/null +++ b/index.js @@ -0,0 +1,6 @@ +Bun.serve({ + port: 8080, + fetch(req, res) { + return Response.redirect("https://git.cbraaten.dev", 302); + }, +});