Derive Default for Config

pull/1/head
Elnu 1 year ago
parent 243063826f
commit 6576e2f3f9

@ -127,7 +127,7 @@ struct NoteUpdate {
content: String, content: String,
} }
#[derive(Serialize, Deserialize)] #[derive(Serialize, Deserialize, Default)]
struct Config { struct Config {
user: String, user: String,
pswd: String, pswd: String,
@ -135,17 +135,6 @@ struct Config {
server_url: String, server_url: String,
} }
impl Default for Config {
fn default() -> Self {
Self {
user: "".to_string(),
pswd: "".to_string(),
note_id: "".to_string(),
server_url: "".to_string(),
}
}
}
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(author, version, about, long_about=None)] #[command(author, version, about, long_about=None)]
struct CliArgs { struct CliArgs {

Loading…
Cancel
Save