1
2
3
4
5
6
7
8
9
10
11
12
use clap::Args;
use std::path::PathBuf;

#[derive(Args)]
pub struct ServerName {
    /// The address of the server to connect to.
    pub server: String,
    /// The name of the account to deploy the app with.
    pub account: String,
    /// The directory containing the pint files.
    pub pint_directory: PathBuf,
}