feat(calc): Convert to Rust w/ Qalc

This commit is contained in:
Michael Aaron Murphy 2021-08-18 00:07:48 +02:00
parent dae8108cb1
commit bc1fc717b1
11 changed files with 154 additions and 157 deletions

View file

@ -15,6 +15,7 @@ fn main() {
let start = plugin.rfind('/').map(|v| v + 1).unwrap_or(0);
let cmd = &plugin.as_str()[start..];
match cmd {
"calc" => block_on(plugins::calc::main()),
"desktop-entries" => block_on(plugins::desktop_entries::main()),
"find" => block_on(plugins::find::main()),
"pop-launcher" => block_on(service::main()),