1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00

add express server

This commit is contained in:
zumbiepig
2024-08-30 09:02:20 -07:00
parent 4747d8955b
commit 2b37e5d687
5 changed files with 102 additions and 15 deletions

8
routes/index.ts Normal file
View File

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