Skip to content

Commit a233c40

Browse files
authored
Merge pull request #104 from lightningdevkit/create-pull-request/patch
Automated nightly rustfmt (2026-01-19)
2 parents 7dad0ff + cef18bf commit a233c40

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ldk-server-cli/src/config.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
// You may not use this file except in accordance with one or both of these
88
// licenses.
99

10-
use serde::{Deserialize, Serialize};
1110
use std::path::PathBuf;
1211

12+
use serde::{Deserialize, Serialize};
13+
1314
const DEFAULT_CONFIG_FILE: &str = "config.toml";
1415
const DEFAULT_CERT_FILE: &str = "tls.crt";
1516
const API_KEY_FILE: &str = "api_key";

ldk-server-cli/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// You may not use this file except in accordance with one or both of these
88
// licenses.
99

10+
use std::path::PathBuf;
11+
1012
use clap::{Parser, Subcommand};
1113
use config::{
1214
get_default_api_key_path, get_default_cert_path, get_default_config_path, load_config,
@@ -32,7 +34,6 @@ use ldk_server_client::ldk_server_protos::types::{
3234
RouteParametersConfig,
3335
};
3436
use serde::Serialize;
35-
use std::path::PathBuf;
3637
use types::CliListPaymentsResponse;
3738

3839
mod config;

0 commit comments

Comments
 (0)