1 2 3 4 5 6 7 8
//! Standalone binary entrypoint. //! //! The binary just delegates to the library runner so the same crate can be //! used both as a standalone app and as an embeddable library. fn main() -> Result<(), eframe::Error> { kithe_plot::run_native() }