This commit is contained in:
2025-10-24 08:09:29 +00:00
commit be406f94f8
95 changed files with 27444 additions and 0 deletions

11
ts/logger.ts Normal file
View File

@@ -0,0 +1,11 @@
/**
* Logger module
* Simple logging for mailer
*/
export const logger = {
log: (level: string, message: string, ...args: any[]) => {
const timestamp = new Date().toISOString();
console.log(`[${timestamp}] [${level.toUpperCase()}] ${message}`, ...args);
},
};