about summary refs log tree commit diff
path: root/kittybox-rs/src/micropub
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2023-06-22 20:21:33 +0300
committerVika <vika@fireburn.ru>2023-06-22 20:23:11 +0300
commit0285e630f3cae1ee2df2c7c465998b1ce669944f (patch)
treecb42c775a2b24923795cdb047d4fce8cc9918ac3 /kittybox-rs/src/micropub
parentd9a4fcd939974299322586c0beed1de7505d8d3d (diff)
main: refactor Kittybox construction
This allows proper separation of backend initialization and Kittybox
construction code. Some boilerplate is still present, but there's much
less of it now thanks to functions being generic.
Diffstat (limited to 'kittybox-rs/src/micropub')
-rw-r--r--kittybox-rs/src/micropub/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/kittybox-rs/src/micropub/mod.rs b/kittybox-rs/src/micropub/mod.rs
index 7ef55ab..ee4d334 100644
--- a/kittybox-rs/src/micropub/mod.rs
+++ b/kittybox-rs/src/micropub/mod.rs
@@ -594,6 +594,7 @@ pub(crate) async fn query<D: Storage, A: AuthBackend>(
     }
 }
 
+#[must_use]
 pub fn router<S, A>(
     storage: S,
     http: reqwest::Client,