1 2 3 4 5 6 7 8 9 10
pub mod list; use crate::commands::envs::list::ListCommand; use clap::Subcommand; #[derive(Subcommand)] pub(crate) enum EnvsCommands { /// List all environment variables for all functions List(ListCommand), }