From 66e3552b35fc6fe6dbe965e0338d81ed755647f9 Mon Sep 17 00:00:00 2001 From: "Javier G. Montoya S" Date: Fri, 28 Feb 2025 14:15:02 -0300 Subject: [PATCH] refactor(commands/payments): move pay_invoice command to its own file within payments dir --- src-tauri/src/commands/payments/mod.rs | 3 +++ .../src/commands/{payments.rs => payments/pay_invoice.rs} | 0 2 files changed, 3 insertions(+) create mode 100644 src-tauri/src/commands/payments/mod.rs rename src-tauri/src/commands/{payments.rs => payments/pay_invoice.rs} (100%) diff --git a/src-tauri/src/commands/payments/mod.rs b/src-tauri/src/commands/payments/mod.rs new file mode 100644 index 0000000..b46e0ef --- /dev/null +++ b/src-tauri/src/commands/payments/mod.rs @@ -0,0 +1,3 @@ +mod pay_invoice; + +pub use pay_invoice::pay_invoice; diff --git a/src-tauri/src/commands/payments.rs b/src-tauri/src/commands/payments/pay_invoice.rs similarity index 100% rename from src-tauri/src/commands/payments.rs rename to src-tauri/src/commands/payments/pay_invoice.rs