MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / __init__

Method __init__

headlessRagnar.py:32–41  ·  view source on GitHub ↗
(self, shared_data_obj)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

CommentaireiaClass · 0.90
WiFiManagerClass · 0.90

Tested by

no test coverage detected