8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
import {ensureDirectoriesExist} from "./src/config.ts";
|
|
import {refreshThreadsEntirely} from "./src/threads/refresh.ts";
|
|
|
|
;(async () => {
|
|
await ensureDirectoriesExist()
|
|
await refreshThreadsEntirely()
|
|
})()
|