Can be used to get a reference to the app after it is instantiated.
(self, priority: _t.Optional[int] = None, final: bool = False)
| 107 | return _wrap |
| 108 | |
| 109 | def setup(self, priority: _t.Optional[int] = None, final: bool = False): |
| 110 | """ |
| 111 | Can be used to get a reference to the app after it is instantiated. |
| 112 | """ |
| 113 | |
| 114 | def _setup(func: _t.Callable[[Dash], None]): |
| 115 | self.add_hook("setup", func, priority=priority, final=final) |
| 116 | return func |
| 117 | |
| 118 | return _setup |
| 119 | |
| 120 | def route( |
| 121 | self, |