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