ate-auth 1.9.0

Represents a standardized data model and API for authenticating an ATE chain-of-trust
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;

/// Creates a new user and login credentials on the authentication server
#[derive(Parser)]
pub struct CreateUser {
    /// Email address of the user to be created
    #[clap(index = 1)]
    pub email: Option<String>,
    /// New password to be associated with this account
    #[clap(index = 2)]
    pub password: Option<String>,
}