valis-core 0.1.9

A library for workflow management
Documentation
1
2
3
4
5
6
7
use crate::modules::software::definitions::{Component, Installation};

pub fn doctor(components: Vec<Component>) {
    for component in components {
        component.check_install();
    }
}