- Add support for `heaven.call` to inject heaven instance into function passed to `.call` which
can be used to defer routes registration or any other heaven setup activities to other python modules i.e.
py
from heaven import App
app = App()
src/routes/messages.py -> up(app: App): app.GET('/messages', 'src.controllers.messages.tables')
app.call('src.routes.messages.up')