| 325 | |
| 326 | |
| 327 | class AppResourceWithRawResponse: |
| 328 | def __init__(self, app: AppResource) -> None: |
| 329 | self._app = app |
| 330 | |
| 331 | self.get = to_raw_response_wrapper( |
| 332 | app.get, |
| 333 | ) |
| 334 | self.init = to_raw_response_wrapper( |
| 335 | app.init, |
| 336 | ) |
| 337 | self.log = to_raw_response_wrapper( |
| 338 | app.log, |
| 339 | ) |
| 340 | self.modes = to_raw_response_wrapper( |
| 341 | app.modes, |
| 342 | ) |
| 343 | self.providers = to_raw_response_wrapper( |
| 344 | app.providers, |
| 345 | ) |
| 346 | |
| 347 | |
| 348 | class AsyncAppResourceWithRawResponse: |