homeboy 0.76.0

CLI for multi-component deployment and development workflow automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::Path;

use crate::component;
use crate::error::Result;

pub fn infer_attached_component_id(local_path: &Path) -> Result<String> {
    component::infer_portable_component_id(local_path)
}

pub fn discover_attached_component(local_path: &Path) -> Option<component::Component> {
    component::discover_from_portable(local_path)
}