From 33cb0aaa33070bb457faf0c8d1b9800d28e64d2a Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 22 Sep 2025 23:15:20 +0800 Subject: [PATCH] feat: add transaction router --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 6ac7cd9..89eec59 100644 --- a/src/main.rs +++ b/src/main.rs @@ -114,6 +114,7 @@ async fn start_server(config: &Config) { .nest("/api/v1/book", api::book::get_nest_handlers()) .nest("/api/v1/category", api::category::get_nested_handlers()) .nest("/api/v1/tag", api::tag::get_nest_handlers()) + .nest("/api/v1/transaction", api::transaction::get_nest_handlers()) .with_state(state) .layer(global_layer); let host = config.service.host.clone();