-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.7.0 Development #60
Conversation
…mat. Added csv output to TaskDetails. Organized ENUMS in main.
installation instructions
Add installation instructions
Improve installation options
…tice to existing json commands. Cleaned up various pieces of code.
plugin.version, | ||
plugin | ||
.configuration_file_name | ||
.unwrap_or_else(|| String::new()), |
Check warning
Code scanning / clippy
redundant closure Warning
plugin.version, | ||
plugin | ||
.configuration_file_name | ||
.unwrap_or_else(|| String::new()), |
Check warning
Code scanning / clippy
redundant closure Warning
auth_key: String, | ||
) -> UserWithPass { | ||
UserWithPass { | ||
username: Some(username.unwrap_or_else(|| String::new())), |
Check warning
Code scanning / clippy
redundant closure Warning
) -> UserWithPass { | ||
UserWithPass { | ||
username: Some(username.unwrap_or_else(|| String::new())), | ||
pass: Some(pass.unwrap_or_else(|| String::new())), |
Check warning
Code scanning / clippy
redundant closure Warning
UserWithPass { | ||
username: Some(username.unwrap_or_else(|| String::new())), | ||
pass: Some(pass.unwrap_or_else(|| String::new())), | ||
currentpwd: Some(currentpwd.unwrap_or_else(|| String::new())), |
Check warning
Code scanning / clippy
redundant closure Warning
No description provided.