chorus/index.ts

8 lines
213 B
TypeScript
Raw Permalink Normal View History

import {ensureDirectoriesExist} from "./src/config.ts";
import {refreshThreadsEntirely} from "./src/threads/refresh.ts";
2024-12-31 02:36:12 +00:00
;(async () => {
await ensureDirectoriesExist()
await refreshThreadsEntirely()
})()