Files
autorestic/src/handlers/cron.ts
2020-11-06 23:51:23 +01:00

8 lines
155 B
TypeScript

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