mod private
{
use crate :: *;
use executor :: { Args, Props };
#[ derive( Debug, Clone ) ]
pub struct VerifiedCommand
{
pub phrase: String,
pub internal_command: bool,
pub args: Args,
pub props: Props,
}
}
crate ::mod_interface!
{
exposed use VerifiedCommand;
}