Initial commit

This commit is contained in:
Dom
2026-03-05 00:20:23 +01:00
commit 8581029226
138 changed files with 35204 additions and 0 deletions

24
main.py Normal file
View File

@@ -0,0 +1,24 @@
# main.py
"""
Point d'entrée agent_v0.
v0 (tray) :
- initialise le logging
- lance TrayApp (icône dans la zone de notification)
- gestion Start/Stop/Queit via menu tray
"""
from __future__ import annotations
from logger_conf import setup_logging
from tray_ui import TrayApp
def main() -> None:
setup_logging()
app = TrayApp()
app.run()
if __name__ == "__main__":
main()