b2d7d99
1
2
3
4
5
6
7
8
9
10
11
12
import { promises as fs } from "node:fs" import { Post } from "../types.mts" export const readPostFile = async (postFilePath: string): Promise<Post> => { const post = JSON.parse( await fs.readFile(postFilePath, 'utf8') ) as Post return post }