studiole-command 0.4.1

A simple command execution framework with event subscription and progress tracking.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Macros for defining command types.
mod generic_macro;
#[cfg(feature = "server")]
mod server_macro;
mod web_macro;

#[allow(unused)]
pub use generic_macro::*;
#[cfg(feature = "server")]
pub use server_macro::*;
pub use web_macro::*;