(self)
| 301 | |
| 302 | @property |
| 303 | def auth(self): |
| 304 | if self._authService is None: |
| 305 | from .services.auth import AuthService |
| 306 | |
| 307 | self._authService = AuthService() |
| 308 | |
| 309 | return self._authService |
| 310 | |
| 311 | @property |
| 312 | def camera(self): |
nothing calls this directly
no test coverage detected