//! Implementations for platform-independent Polyhorn-cli commands.
modinit;modrun;pubuseinit::Init;pubuserun::Run;useclap::Clap;/// Represents a choice between one of the supported platforms that Polyhorn
/// apps can be built for.
#[derive(Clap)]pubenumPlatform{/// Represents the iOS operating system that runs on iPhones, iPads etc.
IOS,/// Represents the Android operating system that runs on most non-Apple
/// smartphones.
Android,}