Formatting

This commit is contained in:
Peter Morton 2023-08-05 16:50:33 -05:00
parent 83769bb816
commit ca011abee5

View File

@ -3,7 +3,7 @@ import authKey from "./authKey.js";
import detailedRequestLogging from "./detailedRequestLogging.js";
export default (router) => {
router.use("/", detailedRequestLogging);
router.use("/interactions-flow", authKey);
router.use("/unified-data-gateway", authKey);
router.use("/", detailedRequestLogging);
router.use("/interactions-flow", authKey);
router.use("/unified-data-gateway", authKey);
};