azure_pipelines_rs/
lib.rs

1//! Azure Pipelines RS
2//!
3//! This is a Rust representation of the Azure Pipeline YAML Schema.
4//!
5//! <https://learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/?view=azure-pipelines>
6
7/// The Azure Pipeline type definitions
8pub mod core;
9
10/// Support for pipeline templates
11pub mod templates;
12
13/// Validation methods
14pub mod validator;