adding in basics of api
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import express from "express";
|
||||
import getAuthRoutes from "./auth";
|
||||
|
||||
export default function getRoutes() {
|
||||
const router = express.Router();
|
||||
|
||||
router.use("/auth", getAuthRoutes());
|
||||
|
||||
return router;
|
||||
}
|
||||
Reference in New Issue
Block a user