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

13
mod.ts Normal file
View File

@@ -0,0 +1,13 @@
/**
* Mailer - Enterprise mail server for serve.zone
*
* Main entry point for the Deno module
*/
// When run as a script, execute the CLI
if (import.meta.main) {
await import('./ts/cli.ts');
}
// Export public API
export * from './ts/index.ts';