Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
223880 committed Jun 29, 2024
1 parent 2be70e8 commit 2d307fb
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "cli"
version = "0.1.0"
edition = "2021"
license = "MIT"

lihgtning lending = "1.0.0"

[package nostr]

[package ldk]
[dependencies]
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"
log = "0.4"
env_logger = "0.9"
3 changes: 3 additions & 0 deletions src/cli/command/command.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub fn run(argument: &str) {
// Implement Command2 logic here
}
3 changes: 3 additions & 0 deletions src/cli/command/command1.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub fn run() {
// Implement Command1 logic here
}
3 changes: 3 additions & 0 deletions src/cli/command/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub mod command1;
pub mod command2;

0 comments on commit 2d307fb

Please sign in to comment.