various changes

This commit is contained in:
2023-07-25 11:52:10 +02:00
parent 8e777ee281
commit c6313bafdf
13 changed files with 317 additions and 33 deletions

View File

@@ -0,0 +1,29 @@
/*
* libreevent - ticketGenerator.js
*
* Created by Janis Hutz 07/25/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
const pdfme = require( '@pdfme/generator' );
class TicketGenerator {
constructor () {
this.ticketQueue = {};
}
generateTicket ( ) {
}
ticketGenerator () {
return new Promise( ( resolve, reject ) => {
} );
}
}
module.exports = TicketGenerator;