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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod logout;
pub(crate) mod tokens;

use crate::commands::auth::logout::LogoutCommand;
use clap::Subcommand;

#[derive(Subcommand)]
pub(crate) enum AuthCommands {
    #[clap(subcommand)]
    Tokens(tokens::TokensCommands),

    /// Log out from server
    Logout(LogoutCommand),
}