UNPKG
@sangaman/xud
Version:
latest (1.0.0-prealpha.5)
1.0.0-prealpha.5
1.0.0-prealpha.4
1.0.0-prealpha.3
1.0.0-prealpha.2
Exchange Union Daemon
github.com/ExchangeUnion/xud
ExchangeUnion/xud
@sangaman/xud
/
tasks
/
db
/
restart.ts
8 lines
(6 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import dropTables
from
'./dropTables'
; import
init
from
'./init'
;
export
default
async
(
testDb?: boolean
)
=> {
await
dropTables(testDb);
await
init
(testDb); };