mirror of
https://github.com/rharkor/caching-for-turbo.git
synced 2025-06-08 01:37:01 +09:00
14 lines
193 B
TypeScript
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()
|