1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! # EventKit CLI //! //! A command-line interface for managing macOS Calendar events and Reminders. #[cfg(target_os = "macos")] mod app; fn main() { #[cfg(not(target_os = "macos"))] { eprintln!("eventkit requires macOS"); std::process::exit(1); } #[cfg(target_os = "macos")] app::run(); }