1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 07:54:49 +00:00
zumbiepig 05786f822c .
2024-07-25 15:09:32 -07:00

10 lines
195 B
JavaScript

import { Router } from 'express';
const router = Router();
/* GET users listing. */
router.get('/', function (req, res, next) {
res.send('respond with a resource');
});
export default router;