mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 08:24:50 +00:00
15 lines
224 B
TypeScript
15 lines
224 B
TypeScript
import {
|
|
Router,
|
|
type Request,
|
|
type Response,
|
|
type NextFunction,
|
|
} from 'express';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', (_req: Request, _res: Response, next: NextFunction) => {
|
|
next();
|
|
});
|
|
|
|
export default router;
|