anyrun_plugin/lib.rs
1/*!
2The crate for building plugins for Anyrun.
3
4Each plugin needs 4 functions defined, `init`, `info`, `get_matches` and the `handler`. Documentation
5on what each of these should be is found in their respective attribute macros.
6!*/
7
8pub use anyrun_interface::{self, HandleResult, Match, PluginInfo};
9pub use anyrun_macros::{get_matches, handler, info, init};