Patch 0.0.2 #9

Merged
niggl merged 69 commits from dev into main 2021-02-03 17:24:35 +00:00
Showing only changes of commit 557cc26f28 - Show all commits

14
src/PdfCreator.ts Normal file
View File

@ -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');
}
}