stackql-deploy 2.0.6

Infrastructure-as-code framework for declarative cloud resource management using StackQL
1
2
3
4
5
6
7
8
9
10
11
12
13
// template/mod.rs

//! # Template Module
//!
//! This module provides functionality for template rendering and context management.
//! Templates are used throughout the application to render queries and other text
//! with variable substitution.
//!
//! The module includes an engine for rendering templates and a context for managing
//! variables used in templates.

pub mod context;
pub mod engine;