mps-rs 1.6.1

MPS — plain-text personal productivity CLI (Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::split_args;

#[derive(Debug, Clone)]
pub struct MpsGroupData {
    pub tags: Vec<String>,
}

impl MpsGroupData {
    pub fn parse_args(raw: &str) -> Self {
        MpsGroupData { tags: split_args(raw).tags }
    }
}