cmdpal 0.3.0

Rust SDK for PowerToys Command Palette
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Common invokable command implementations.

pub mod copy_text;
pub mod open_url;
pub mod reveal_file;

#[doc(inline)]
pub use copy_text::CopyTextCommandBuilder;

#[doc(inline)]
pub use open_url::OpenUrlCommandBuilder;

#[doc(inline)]
pub use reveal_file::RevealFileCommandBuilder;