6 lines
133 B
TypeScript
Executable File

"use server";
import { readFile } from "fs/promises";
export const readMD = async (path: string) => await readFile(path, "utf-8");