mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-04 10:50:55 +01:00
16 lines
303 B
Rust
16 lines
303 B
Rust
use crate::cli::set_token;
|
|
use clap::Args;
|
|
use pesde::Project;
|
|
|
|
#[derive(Debug, Args)]
|
|
pub struct LogoutCommand {}
|
|
|
|
impl LogoutCommand {
|
|
pub fn run(self, project: Project) -> anyhow::Result<()> {
|
|
set_token(project.data_dir(), None)?;
|
|
|
|
println!("logged out");
|
|
|
|
Ok(())
|
|
}
|
|
}
|