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();