thot_core/runner/
env.rs

1//! Environment variables for runner.
2pub struct ThotEnv;
3
4impl ThotEnv {
5    pub fn original_dir_key() -> String {
6        String::from("THOT_ORIGINAL_DIR")
7    }
8
9    pub fn container_id_key() -> String {
10        String::from("THOT_CONTAINER_ID")
11    }
12}
13
14#[cfg(test)]
15#[path = "./env_test.rs"]
16mod env_test;