mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 20:19:52 +01:00
7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
|
|
function worker() {
|
||
|
|
console.log('sleeping for 60 seconds');
|
||
|
|
setTimeout(worker, 60 * 1000);
|
||
|
|
}
|
||
|
|
|
||
|
|
worker();
|