diff options
author | Vika <vika@fireburn.ru> | 2024-08-26 17:42:08 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-26 17:42:08 +0300 |
commit | 8f78140825380b808270422c9613999a9399c573 (patch) | |
tree | 41f706a6cd2e5d1d40b2b097a5783b0a98ec9a7b /src/webmentions | |
parent | 31a0bdad439a4575c1686f690e9e72bd44dde472 (diff) | |
download | kittybox-8f78140825380b808270422c9613999a9399c573.tar.zst |
Fix kittybox-check-webmention CLI tool
Now it uses the same code as Kittybox itself.
Diffstat (limited to 'src/webmentions')
-rw-r--r-- | src/webmentions/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webmentions/mod.rs b/src/webmentions/mod.rs index 22701b4..91b274b 100644 --- a/src/webmentions/mod.rs +++ b/src/webmentions/mod.rs @@ -92,7 +92,7 @@ where .unwrap(); } -mod check; +pub mod check; #[derive(thiserror::Error, Debug)] enum Error<Q: std::error::Error + std::fmt::Debug + Send + 'static> { |