fix: log container is empty after failing to obtain cert #281

This commit is contained in:
Jacky 2024-02-13 12:16:15 +08:00
parent fd519aea5e
commit a095c88fd2
10 changed files with 360 additions and 349 deletions

View file

@ -25,6 +25,11 @@ export interface CertificateInfo {
not_before: string
}
export interface CertificateResult {
ssl_certificate: string
ssl_certificate_key: string
}
const cert: Curd<Cert> = new Curd('/cert')
export default cert