kinetics 0.15.3

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
15
pub mod add;
pub mod delete;

use crate::commands::orgs::owners::add::AddOwnerCommand;
use crate::commands::orgs::owners::delete::DeleteOwnerCommand;
use clap::Subcommand;

#[derive(Subcommand)]
pub(crate) enum OwnersCommands {
    /// Add a new owner to an org
    Add(AddOwnerCommand),

    /// Demote an owner of an org
    Delete(DeleteOwnerCommand),
}