Add routes

This commit is contained in:
Owen Schwartz 2024-09-28 12:14:44 -04:00
parent 0a27579acd
commit 8308df1f49
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
9 changed files with 45 additions and 0 deletions

View file

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