Spaces:
Sleeping
Sleeping
File size: 407 Bytes
c817fe8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Lightweight platform gate for the optional FCC desktop dependencies."""
import sys
if sys.platform in {"darwin", "win32"}:
from free_claude_code.cli.desktop_tray import launch
else:
def launch() -> None:
"""Reject platforms for which FCC does not install a desktop shell."""
print("FCC Desktop is supported on Windows and macOS.", file=sys.stderr)
raise SystemExit(1)
|