Skip to content

Commit

Permalink
feat<>: create route
Browse files Browse the repository at this point in the history
  • Loading branch information
DSQL-MONGKEY committed May 29, 2024
1 parent 1260ee2 commit 99211b5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions routes/catRoutes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const express = require('express');
const router = express.Router();
const multer = require('multer');
const upload = multer();


router.post('/classify', upload.single('image'))

module.exports = router;

0 comments on commit 99211b5

Please sign in to comment.