shine-cli 2.0.0-rc.2

Give personal automation a reviewable lifecycle
Documentation
1
2
3
4
5
6
7
8
//! CLI filesystem adapter for Core-owned Sys manifest parsing.

use anyhow::Result;
use shine_core::runtime::SysManifest;

pub(super) fn parse_and_validate_manifest(content: &str) -> Result<SysManifest> {
    shine_core::runtime::parse_sys_manifest(content)
}