Merge pull request 'Update src/routes/v1/api.route.js' (#25) from suvo-patch-1 into master

Reviewed-on: #25
branch2
Subhodip Ghosh 2025-02-11 11:21:10 +00:00
commit ab74529965
1 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ const aiMarkDrawing = require("../api/aiMarkDrawing");
const aiFeedbackOnReportWithFollowup = require("../api/aiFeedbackOnReportWithFollowup");
const aiTextToSpeech = require("../api/aiTextToSpeech");
const aiEvaluateImageToStar = require("../api/aiEvaluateImageToStar");
// const getGameInfo = require("../api/getGameInfo");
const getGameInfo = require("../api/getGameInfo");
const saveGalleryImage = require("../api/saveGalleryImage");
const getGalleryImage = require("../api/getGalleryImage");
// const aiTest = require("../api/aiTest");
@ -195,9 +195,9 @@ router.get("/ping", (req, res) => {
});
// getGameInfo.
// router.get("/getGameInfo", (req, res) => {
// getGameInfo(req, res);
// });
router.get("/getGameInfo", (req, res) => {
getGameInfo(req, res);
});
// Save Drawing Game Gallery Image
router.post("/saveGalleryImage", (req, res) => {