blob: c4e40c29177385c14f93165439d36a18f1d61494 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
use std::convert::TryInto;
/// Run like this `echo url=https://example.com | cargo run --example git-credential-light -- fill`
pub fn main() -> Result<(), gix_credentials::program::main::Error> {
gix_credentials::program::main(
std::env::args_os().skip(1),
std::io::stdin(),
std::io::stdout(),
|action, context| {
use gix_credentials::program::main::Action::*;
gix_credentials::helper::Cascade::default()
.invoke(
match action {
Get => gix_credentials::helper::Action::Get(context),
Erase => gix_credentials::helper::Action::Erase(context.to_bstring()),
Store => gix_credentials::helper::Action::Store(context.to_bstring()),
},
gix_prompt::Options::default().apply_environment(true, true, true),
)
.map(|outcome| outcome.and_then(|outcome| (&outcome.next).try_into().ok()))
},
)
}
|