Skip to content

Commit d5ef8c8

Browse files
committed
making Sequential the only router
1 parent 06202ab commit d5ef8c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = (config = {}) => {
2-
const router = config.router || require('./lib/router/sequential')(config)
2+
// Sequential is default and only router implementation for now
3+
const router = require('./lib/router/sequential')(config)
34

45
return {
56
router

0 commit comments

Comments
 (0)