27 lines
612 B
TypeScript
27 lines
612 B
TypeScript
// /pages/api/cpl/opcuaAPIHandler.ts
|
|
|
|
import { NextApiRequest, NextApiResponse } from "next";
|
|
import path from "path";
|
|
import fs from "fs/promises";
|
|
|
|
export default async function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse
|
|
) {
|
|
const filePath = path.join(
|
|
process.cwd(),
|
|
"mocks",
|
|
"device-cgi-simulator",
|
|
"SERVICE",
|
|
"opcuaMockData.js"
|
|
);
|
|
|
|
try {
|
|
const data = await fs.readFile(filePath, "utf-8");
|
|
res.status(200).send(data);
|
|
} catch (error) {
|
|
console.error("Error processing opcuaAPIHandler:", error);
|
|
res.status(404).json({ error: "File not found" });
|
|
}
|
|
}
|