import { Factory } from "@polar-rules/nest-task";

import { $moduleName } from "./tasks.module";

async function main(): Promise<void> {
    const app = await Factory.create($moduleName);

    await app.run();
}

main();

