gobby-wiki 0.7.0

Gobby wiki CLI shell
1
2
3
4
5
6
7
8
9
10
11
use crate::{CommandOutcome, ScopeSelection, WikiError, librarian};

pub(crate) fn execute(selection: ScopeSelection) -> Result<CommandOutcome, WikiError> {
    super::run_analysis_command(
        "librarian",
        selection,
        "serialize librarian proposals report",
        |root, scope| librarian::run(root, scope, librarian::Options::default()),
        librarian::render_text,
    )
}