1
0
Fork 0
mirror of https://github.com/rharkor/caching-for-turbo.git synced 2025-06-08 01:37:01 +09:00
caching-for-turbo/src/dev/cleanup.ts
2025-04-10 16:11:07 +02:00

14 lines
193 B
TypeScript

import { config } from 'dotenv'
config()
import { cleanup } from 'src/lib/server/cleanup'
const main = async () => {
await cleanup({
log: {
info: console.log
}
})
}
main()