chore: add transports example (#851)

This commit is contained in:
Vasco Santos
2021-02-11 11:12:23 +01:00
committed by GitHub
parent f6a4cad827
commit 1af8472dc6
7 changed files with 135 additions and 8 deletions

View File

@ -0,0 +1,13 @@
'use strict'
const test1 = require('./test-1')
const test2 = require('./test-2')
const test3 = require('./test-3')
async function test() {
await test1()
await test2()
await test3()
}
module.exports = test