Skip to main content

bashrs/types/
mod.rs

1//! Type system for bashrs
2//!
3//! This module provides type checking and taint tracking for injection safety.
4
5pub mod taint;
6
7pub use taint::{Taint, Type, TypeChecker};