New EPUB builder, other minor changes.
[librarian.git] / src / librarian / builders / pdf.py
1 from librarian import OutputFile
2
3
4 class PdfBuilder:
5     # Obowiązkowe
6     file_extension = 'pdf'
7     def build(self, document, mp3):
8         # stub
9         return OutputFile.from_bytes(b'')
10
11
12