mps/elements/
mps_group.rs1use super::split_args;
2
3#[derive(Debug, Clone)]
4pub struct MpsGroupData {
5 pub tags: Vec<String>,
6}
7
8impl MpsGroupData {
9 pub fn parse_args(raw: &str) -> Self {
10 MpsGroupData {
11 tags: split_args(raw).tags,
12 }
13 }
14}