mirror of
https://github.com/regmicmahesh/ses-mailer.git
synced 2024-08-14 22:57:18 +00:00
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
import { App } from "./app.ts";
|
|
|
|
async function serve() {
|
|
const app = new App();
|
|
await app.start();
|
|
}
|
|
|
|
serve();
|