anyrun-plugin 0.1.0

The crate for building plugins for Anyrun
Documentation
1
2
3
4
5
6
7
8
9
/*!
The crate for building plugins for Anyrun.

Each plugin needs 4 functions defined, `init`, `info`, `get_matches` and the `handler`. Documentation
on what each of these should be is found in their respective attribute macros.
!*/

pub use anyrun_interface::{self, HandleResult, Match, PluginInfo};
pub use anyrun_macros::{get_matches, handler, info, init};