Files
Valorant-Duofinder/api/routes/matchings.js
Richard Gingrich 5ca105d4f2 Add files via upload
2024-08-06 15:53:05 -06:00

9 lines
251 B
JavaScript

const express = require("express");
const router = express.Router({ mergeParams: true });
const matchings = require("../controllers/matchings");
router.route('/matchings/:userId')
.get(matchings.retrieveMatchHistory);
module.exports = router;