initializeServer is an undocumented helper function I introduced in early v1 (1.0-alpha). After we released custom server support, we supposed to rewrite the whole initializeServer with the bottender function. However, initializeServer is a synchronous function can't be written to asynchronous function without break the return value.
So, I switched the implementation under bottender start/dev to the bottender function. and maybe rewrite initializeServer in v2.
initializeServer
is an undocumented helper function I introduced in early v1 (1.0-alpha). After we released custom server support, we supposed to rewrite the wholeinitializeServer
with thebottender
function. However,initializeServer
is a synchronous function can't be written to asynchronous function without break the return value.So, I switched the implementation under bottender start/dev to the
bottender
function. and maybe rewriteinitializeServer
in v2.