autorestic/src/handlers/cron.ts

8 lines
155 B
TypeScript
Raw Normal View History

2020-11-06 23:51:23 +01:00
import { runCron } from '../cron'
import { checkIfResticIsAvailable } from '../utils'
export function cron() {
checkIfResticIsAvailable()
runCron()
}