From 0285e630f3cae1ee2df2c7c465998b1ce669944f Mon Sep 17 00:00:00 2001 From: Vika Date: Thu, 22 Jun 2023 20:21:33 +0300 Subject: 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. --- kittybox-rs/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'kittybox-rs/src/lib.rs') diff --git a/kittybox-rs/src/lib.rs b/kittybox-rs/src/lib.rs index 05c1ed2..3d5638a 100644 --- a/kittybox-rs/src/lib.rs +++ b/kittybox-rs/src/lib.rs @@ -50,6 +50,7 @@ pub mod companion { } } + #[must_use] pub fn router() -> axum::Router { let resources: ResourceTable = { let mut map = HashMap::new(); -- cgit 1.4.1