autorestic/src/handlers/cron.ts

8 lines
155 B
TypeScript

import { runCron } from '../cron'
import { checkIfResticIsAvailable } from '../utils'
export function cron() {
checkIfResticIsAvailable()
runCron()
}