jarvy 0.0.5

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Template system for Jarvy
//!
//! This module provides:
//! - Template schema definition
//! - Template loading from TOML files
//! - Built-in template catalog

pub mod builtin;
pub mod schema;

// Public API exports
#[allow(unused_imports)]
pub use builtin::{BuiltinTemplate, get_builtin_template, list_builtin_templates};
#[allow(unused_imports)]
pub use schema::{Template, TemplateMeta, TemplateTools};