This commit is contained in:
Ibnu Naz'm Ar-rosyid
2025-07-18 20:05:17 +07:00
commit bea44c1b7c
234 changed files with 5681 additions and 0 deletions

View File

@ -0,0 +1,13 @@
const express = require('express');
const router = express.Router();
router.get('/check', (req, res) => {
res.status(200).json({
status: 'ok',
message: 'Server is up and running',
timestamp: new Date().toISOString()
});
});
module.exports = router;