kinetics 0.15.1

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
mod runner;
use crate::{
    runner::{Runnable, Runner},
    writer::Writer,
};
use runner::LoginRunner;

#[derive(clap::Args, Clone)]
pub(crate) struct LoginCommand {
    /// Your registered email address
    #[arg()]
    email: String,
}

impl Runnable for LoginCommand {
    fn runner(&self, _writer: &Writer) -> impl Runner {
        LoginRunner {
            command: self.clone(),
        }
    }
}