14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
|
|
/**
|
||
|
|
* 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';
|