(self, shared_data_obj)
| 30 | """Main class for Ragnar. Manages the primary operations of the application.""" |
| 31 | |
| 32 | def __init__(self, shared_data_obj): |
| 33 | self.shared_data = shared_data_obj |
| 34 | self.commentaire_ia = Commentaireia() |
| 35 | self.orchestrator_thread = None |
| 36 | self.orchestrator = None |
| 37 | self.wifi_manager = WiFiManager(self.shared_data) |
| 38 | |
| 39 | # Expose this instance to other modules |
| 40 | self.shared_data.ragnar_instance = self |
| 41 | self.shared_data.headless_mode = True |
| 42 | |
| 43 | # --------------------------------------------------------------------- |
| 44 | # Main loop |
nothing calls this directly
no test coverage detected