This commit is contained in:
Owen Schwartz
2024-09-29 14:26:16 -04:00
parent 819a0ecb43
commit 8c9d19f6cd
4 changed files with 58 additions and 3 deletions

View File

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