bootstrapped

This commit is contained in:
Milo Schwartz
2024-09-27 21:39:03 -04:00
parent b7c1716fa7
commit d2e35b4a1f
24 changed files with 15511 additions and 5203 deletions

9
server/routers/unauth.ts Normal file
View File

@@ -0,0 +1,9 @@
import { Router } from "express";
const unauth = Router();
unauth.get("/", (_, res) => {
res.status(200).json({ message: "Healthy" });
});
export default unauth;