mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 12:13:57 +00:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
async function run() {
|
|
console.log('Waiting for starting containers...');
|
|
await new Promise(resolve => setTimeout(resolve, 20000));
|
|
}
|
|
|
|
run();
|