Files
tcg-collectors-server/src/routes/healthcheck/index.js
T
joseph.nelson4456 2636816241 working on healthcheck api and auth api (#2)
Reviewed-on: #2
Co-authored-by: Joseph Nelson <joseph.nelson4456@gmail.com>
Co-committed-by: Joseph Nelson <joseph.nelson4456@gmail.com>
2026-05-15 22:37:27 -07:00

8 lines
145 B
JavaScript

import express from 'express'
const router = express.Router()
router.get('/', (req, res) => res.json({ status: 'UP' }))
export default router