IO-2626 CSI Pages

Move to Server side initial commit
This commit is contained in:
Allan Carr
2024-02-02 11:55:57 -08:00
parent c8fc1b0f68
commit 830d2c87d2
11 changed files with 293 additions and 147 deletions

View File

@@ -0,0 +1,8 @@
const express = require("express");
const router = express.Router();
const { lookup, submit } = require("../csi/csi");
router.post("/lookup", lookup);
router.post("/submit", submit);
module.exports = router;