mod create;
mod delete;
mod list;
use clap::Subcommand;
use create::CreateCommand;
use delete::DeleteCommand;
use crate::commands::auth::tokens::list::ListCommand;
#[derive(Subcommand)]
pub(crate) enum TokensCommands {
Create(CreateCommand),
Delete(DeleteCommand),
List(ListCommand),
}