#!/usr/bin/env python3 """ Family Calendar Manager — Legacy wrapper. This file is kept for backward compatibility with existing cron jobs and heartbeat scripts. All logic has been refactored into the family_assistant package. Usage remains identical: python3 family_calendar.py [options] """ from family_assistant.cli import main if __name__ == "__main__": main()