Path to the file that stores the last-used sandbox name for a gateway. Location: `$XDG_CONFIG_HOME/openshell/gateways/ /last_sandbox`
(gateway: &str)
| 92 | /// |
| 93 | /// Location: `$XDG_CONFIG_HOME/openshell/gateways/<gateway>/last_sandbox` |
| 94 | pub fn last_sandbox_path(gateway: &str) -> Result<PathBuf> { |
| 95 | Ok(user_gateway_dir(gateway)?.join("last_sandbox")) |
| 96 | } |
| 97 | |
| 98 | #[cfg(test)] |
| 99 | mod tests { |