mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 22:36:01 +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();
|