aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorLorenz Leitner <lrnz.ltnr@gmail.com>2021-10-11 14:59:59 +0200
committerLorenz Leitner <lrnz.ltnr@gmail.com>2021-10-12 12:06:57 +0200
commit1dd4a4e70a9ac757ca2f539221e4e1a5b4fbf89d (patch)
tree45f3b51e356359ec1d1859ec62ee98fa39a9ed51 /src/main.rs
parentAdd test (diff)
Add wa as hook
Diffstat (limited to '')
-rw-r--r--src/main.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 9ab7f6c..f337613 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -52,5 +52,10 @@ async fn main() {
"Prints some info about this kitty cat",
catinator::hooks::about
),
+ async command(
+ "wa",
+ "Returns Wolfram Alpha results for a query",
+ catinator::hooks::wa::wa
+ ),
];
}