mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-13 00:02:41 +10:00
Still needs a massive go-over because there shouldn't be anything referencing tauri in any of the workspaces except the original one. Process manager has been refactored as an example Signed-off-by: quexeky <git@quexeky.dev>
7 lines
175 B
Rust
7 lines
175 B
Rust
#[macro_export]
|
|
macro_rules! app_emit {
|
|
($app:expr, $event:expr, $p:expr) => {
|
|
$app.emit($event, $p).expect(&format!("Failed to emit event {}", $event));
|
|
};
|
|
}
|