clin-rs 0.8.11

Encrypted terminal note-taking app inspired by Obsidian
use std::path::PathBuf;

pub enum CliCommand {
    Run {
        edit_title: Option<String>,
    },
    NewAndOpen {
        title: Option<String>,
        template: Option<String>,
    },
    QuickNote {
        content: String,
        title: Option<String>,
    },
    ListNoteTitles,
    Help,

    ShowStoragePath,
    SetStoragePath {
        path: PathBuf,
    },
    ResetStoragePath,
    MigrateStorage,

    ShowKeybinds,
    ExportKeybinds,
    ResetKeybinds,

    ListTemplates,
    CreateExampleTemplates,
}