(&self)
| 52 | } |
| 53 | |
| 54 | pub fn acme_account_uri(&self) -> Result<String> { |
| 55 | let encoded_credentials = fs::read_to_string(self.account_credentials_path())?; |
| 56 | let credentials: Credentials = serde_json::from_str(&encoded_credentials)?; |
| 57 | Ok(credentials.account_id) |
| 58 | } |
| 59 | |
| 60 | pub fn acme_account_quote_path(&self) -> PathBuf { |
| 61 | self.workdir.join("acme-account.quote") |
nothing calls this directly
no test coverage detected