Closed gobengo closed 2 years ago
Motivation
app.use(rest())
app.use is not a function
rest()
app.configure()
app.use()
That did indeed change. Thank you!
Motivation
app.use(rest())
and it led to a runtime http response error likeapp.use is not a function
. I think it's becauserest()
is expected to be passed toapp.configure()
and notapp.use()
.