- Add support for `._.` a.k.a lookup helper paradigm to manage heaven global state i.e. global state getter and setter
py
from http import HTTPStatus
from heaven import App
app = App()
save 'abc' under your app global state under the `save_me` key
app._.save_me = 'abc'
retrieve from your global state using the same `._.` paradigm
app.GET('/', lambda req, res, ctx: res.out(HTTPStatus.OK, f'This is what you saved: {req.app._.save_me}'))
think of **app**`._.`**this_field** AS **app** -> `lookup` -> **this_field** where `._. == lookup`