straymark-cli 3.12.3

CLI for StrayMark — the cognitive discipline your AI-assisted projects need
1
2
3
4
5
6
7
8
use anyhow::Result;

use crate::self_update;

pub fn run(method: &str) -> Result<()> {
    let method = self_update::parse_method(method);
    self_update::perform_update(method)
}