mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 09:24:48 +00:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
// @ts-nocheck
|
|
import { Router } from 'express';
|
|
const indexRouter = Router();
|
|
|
|
indexRouter.get('/', async (req, res) => {
|
|
// router for future use
|
|
});
|
|
|
|
export { indexRouter };
|