diff --git a/src/PdfCreator.ts b/src/PdfCreator.ts new file mode 100644 index 0000000..1650c79 --- /dev/null +++ b/src/PdfCreator.ts @@ -0,0 +1,14 @@ +import fs from "fs"; +import path from 'path'; + +/** + * This class is responsible for all things pdf creation. + * This uses the html templates from src/templates. + */ +export class PdFCreator { + private templateDir = path.join(__dirname, '/templates'); + + public generateSponsoringContract() { + const template = fs.readFileSync(`${this.templateDir}/sponsoring_contract.html`, 'utf8'); + } +}