Path to the vault directory (`.vault/` at the project root).
(&self)
| 11 | impl Repository { |
| 12 | /// Path to the vault directory (`.vault/` at the project root). |
| 13 | pub fn vault_dir(&self) -> PathBuf { |
| 14 | self.root.join(VAULT_DIR) |
| 15 | } |
| 16 | |
| 17 | /// Check if this repository has a vault initialized. |
| 18 | pub fn has_vault(&self) -> Result<bool, RepositoryError> { |
no outgoing calls