()
| 198 | } |
| 199 | |
| 200 | static async getFilesRootPath(): Promise<string> { |
| 201 | await this.loadConfig(); |
| 202 | |
| 203 | if (isAbsolute(this.config.files.rootPath)) { |
| 204 | return this.config.files.rootPath; |
| 205 | } else { |
| 206 | return join(Deno.cwd(), this.config.files.rootPath); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | static async getEmailConfig(): Promise<Config['email']> { |
| 211 | await this.loadConfig(); |
no test coverage detected