fix some tests

This commit is contained in:
David Pedersen
2022-11-23 18:47:58 +01:00
parent e85538b047
commit ae72d18e37
23 changed files with 24 additions and 55 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ fn main() {
auth_token: Default::default(),
};
let _: axum::routing::RouterService = Router::new()
let _: axum::Router = Router::new()
.route("/", get(handler))
.with_state(state);
}