heddle-cli 0.2.4

An AI-native version control system
Documentation
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: Apache-2.0
use anyhow::Result;

use crate::{cli::Cli, harness};

pub fn cmd_harness_bridge(cli: &Cli) -> Result<()> {
    harness::cmd_harness_bridge(cli)
}