obsidian-cli 0.1.2

A CLI for managing obsidian vaults, notes and databases
1
2
3
4
5
6
7
8
9
10
11
use std::path::PathBuf;

pub type Properties = serde_yaml::Value;

#[derive(Debug, PartialEq, Eq)]
pub struct ObsidianNote {
    pub file_path: PathBuf,
    pub file_contents: String,
    pub file_body: String,
    pub properties: Option<Properties>,
}