use cc_talk_core::cc_talk::Category;
use super::command::CommandSet;
pub mod core_plus_commands;
pub struct CorePlusCommandSet;
impl CommandSet for CorePlusCommandSet {
const NAME: &'static str = "CorePlus";
fn is_compatible_with(_: Category) -> bool {
true
}
}