AKCore 50722ec6b5 Add Reroll Random and Stats upload
and fix a few errors from last pr
2023-06-01 17:52:59 -07:00

9 lines
229 B
TypeScript

import express from "express";
import { uploadController } from "../controllers/stats/uploadController";
const statsRouter = express.Router();
//post
statsRouter.post("/upload.php", uploadController);
export { statsRouter };