2025-09-26 23:56:49 +00:00
|
|
|
use command_parser::token::TokensIterator;
|
2025-01-04 07:35:04 +09:00
|
|
|
|
2025-09-26 23:56:49 +00:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
|
|
pub fn group() -> (&'static str, [&'static str; 1]) {
|
|
|
|
|
("group", ["g"])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn targeted() -> TokensIterator {
|
|
|
|
|
tokens!(group(), GroupRef)
|
|
|
|
|
}
|