employer verify part

This commit is contained in:
CHIEFSOFT\ameye
2024-06-13 11:47:00 -04:00
parent e14fc3caa3
commit f86fa83264
2 changed files with 16 additions and 1 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
import express from "express"
import { fetch } from "../controller/verifyController.js"
import { verifyEmployer } from "../controller/verifyEmployer.js"
const verify_route = express.Router();
verify_route.post("/bvn",fetch);
verify_route.post("/employer",verifyEmployer);
export default verify_route;