The documentation states:
`on_startup: list[LifespanHook]
A list of LifespanHook called during application startup.'
and
`The parameters provided to the Litestar app are used to instantiate an instance, and then the instance is passed to any callbacks registered to on_app_init in the order they are provided.
The final attribute values are used to instantiate the application object.`
On Start Up has a like of Life Span Hooks and On App Init does not.
But, my question is which of these happen first?
I want to use a method like
global JWT_secret
JWT_secret = str(secrets.token_hex(16))```
to set the value of the variable I'll be using JWT authentication,
In this use case, does it matter which one I use?