mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2025-09-06 10:30:39 +00:00
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
import { runCron } from '../cron'
|
|
import { checkIfResticIsAvailable } from '../utils'
|
|
|
|
export function cron() {
|
|
checkIfResticIsAvailable()
|
|
runCron()
|
|
}
|