(msg: String)
| 169 | } |
| 170 | |
| 171 | pub fn err(msg: String) -> Self { |
| 172 | let timestamp = chrono::Local::now().format("%Y:%H:%S").to_string(); |
| 173 | LoadingRecord::Err(timestamp, msg) |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | pub struct ToolManagerBuilder { |
no test coverage detected