enodia-sentinal/enodia_sentinel/tray/__main__.py
Luna 1451cf7d58 Add pystray tray applet wiring and [tray] extra
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-03 07:37:39 -07:00

8 lines
179 B
Python

# SPDX-License-Identifier: GPL-3.0-or-later
"""`python -m enodia_sentinel.tray` entry point."""
import sys
from .app import main
if __name__ == "__main__":
sys.exit(main())