1#[derive(Debug, Default, Clone)]
2pub struct Environment {
3 pub build_info: &'static str,
4}
5
6impl Environment {
7 pub fn new() -> Self {
8 Default::default()
9 }
10
11 pub fn build_info(mut self, build_info: &'static str) -> Self {
12 self.build_info = build_info;
13 self
14 }
15}