terrars 0.1.13

Terraform in Rust
Documentation
1
2
3
4
5
6
7
8
9
use std::{
    cell::{
        RefCell,
    },
};

thread_local!{
    pub(crate) static REPLACE_EXPRS: RefCell<Option<Vec<(String, String)>>> = RefCell::new(None);
}