import { readFile } from 'node:fs/promises' /** * * @param {string} path * @returns {Promise} */ export async function getOdtTemplate(path) { const fileBuffer = await readFile(path) return fileBuffer.buffer }