mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
22 lines
542 B
Rust
22 lines
542 B
Rust
use crate::cli::auth::get_tokens;
|
|
use clap::Args;
|
|
|
|
#[derive(Debug, Args)]
|
|
pub struct TokenCommand {}
|
|
|
|
impl TokenCommand {
|
|
pub async fn run(self, index_url: gix::Url) -> anyhow::Result<()> {
|
|
let tokens = get_tokens().await?;
|
|
let token = match tokens.0.get(&index_url) {
|
|
Some(token) => token,
|
|
None => {
|
|
println!("not logged in into {index_url}");
|
|
return Ok(());
|
|
}
|
|
};
|
|
|
|
println!("token for {index_url}: \"{token}\"");
|
|
|
|
Ok(())
|
|
}
|
|
}
|