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