greentic-dev 0.4.75

Developer CLI and local tooling for Greentic flows, packs, and components
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;

use crate::config;
use crate::delegate::component::ComponentDelegate;

pub fn run_passthrough(args: &[String]) -> Result<()> {
    let config = config::load()?;
    let delegate = ComponentDelegate::from_config(&config)?;
    delegate.run_passthrough(args)
}