solidity-audit
Version:
Solidity Audit Code
15 lines (13 loc) • 461 B
JavaScript
import path from "path";
import { promises as fs } from "fs";
export default async function handler(req, res) {
//Find the absolute path of the json directory
const jsonDirectory = path.join(process.cwd(), "json");
//Read the json data file data.json
const fileContents = await fs.readFile(
jsonDirectory + "/report.json",
"utf8"
);
//Return the content of the data file in json format
res.status(200).json(fileContents);
}