Skip to content

Commit

Permalink
feat: init credential manager
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 24, 2024
1 parent 09cfdc7 commit 94548a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/git_lfs/git_lfs_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ struct Event {
concurrent: bool
}

#[derive(Debug)]
pub struct GitLfsParser<'custom_transfer_agent, T: CustomTransferAgent> {
custom_transfer_agent: &'custom_transfer_agent mut T
}
Expand Down
2 changes: 1 addition & 1 deletion src/subcommands/main_subcommand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub struct MainSubcommand {

impl CustomTransferAgent for MainSubcommand {
async fn init(&mut self) -> Result<()> {
// Init credential manager
self.credential_manager = Some(CredentialManager::new()?);
// Init synology api

Ok(())
Expand Down

0 comments on commit 94548a6

Please sign in to comment.