atac 0.23.0

Arguably a Terminal API Client. Feature-full, free, open-source, offline and account-less.
1
2
3
4
5
6
7
8
use clap::Args;
use serde::{Deserialize, Serialize};

#[derive(Args, Clone, Default, Debug, Serialize, Deserialize)]
pub struct BasicAuth {
    pub username: String,
    pub password: String
}