added backend files
This commit is contained in:
9
backend/routes/api.route.js
Normal file
9
backend/routes/api.route.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import express from "express";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.get("/", (req, res) => {
|
||||
res.json({ message: "API is working!" }).status(200);
|
||||
});
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user