Modify messages

This commit is contained in:
CHIEFSOFT\ameye
2025-01-13 21:02:19 -05:00
parent 62a1260962
commit f49969e147
3 changed files with 78 additions and 1 deletions
+2
View File
@@ -1,9 +1,11 @@
import express from "express"
import { fetch } from "../controller/verifyController.js"
import { verifyEmployer } from "../controller/verifyEmployer.js"
import { offerLetter } from "../controller/offerLetter.js";
const verify_route = express.Router();
verify_route.post("/bvn",fetch);
verify_route.post("/employer",verifyEmployer);
verify_route.post("/offer",offerLetter);
export default verify_route;