1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 08:24:50 +00:00
2024-08-30 09:02:20 -07:00

9 lines
163 B
TypeScript

import { Router } from 'express';
const indexRouter = Router();
indexRouter.get('/', async (req, res) => {
// router for future use
});
export { indexRouter };