mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 08:24:50 +00:00
10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
import { Router } from "express";
|
|
const router = Router();
|
|
|
|
/* GET users listing. */
|
|
router.get("/", function (req, res, next) {
|
|
res.send("respond with a resource");
|
|
});
|
|
|
|
export default router;
|