working on healthcheck api and auth api

This commit is contained in:
2026-05-14 23:43:02 -07:00
parent ce914f91fd
commit fa6d6a97ba
4 changed files with 89 additions and 12 deletions
+7
View File
@@ -0,0 +1,7 @@
import express from 'express'
const router = exporess.Router()
router.get('/', (req, res) => res.json({ status: "UP" }))
export default router