Skip to content

Commit 82918d3

Browse files
committed
cli: rename serve-signer command to bunker
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent e8ef999 commit 82918d3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
* ffi(nostr): impl `Display` for `Coordinate` ([Yuki Kishimoto])
8080
* ffi(sdk): change `Connection::embedded_tor` fingerprint for `android` and `ios` targets ([Yuki Kishimoto])
8181
* cli: rename `open` command to `shell` ([Yuki Kishimoto])
82+
* cli: rename `serve-signer` command to `bunker` ([Yuki Kishimoto])
8283

8384
### Added
8485

crates/nostr-cli/src/cli/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub enum Command {
3333
/// Serve Nostr Connect signer
3434
///
3535
/// <https://github.com/nostr-protocol/nips/blob/master/46.md>
36-
ServeSigner,
36+
Bunker,
3737
}
3838

3939
#[derive(Debug, Parser)]

crates/nostr-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async fn run() -> Result<()> {
8484
tokio::time::sleep(Duration::from_secs(60)).await
8585
}
8686
}
87-
CliCommand::ServeSigner => {
87+
Command::Bunker => {
8888
// Ask secret key
8989
let secret_key: SecretKey = io::get_secret_key()?;
9090

0 commit comments

Comments
 (0)