Merge branch 'main' into drop_pogreb

This commit is contained in:
6543 2023-02-11 01:47:39 +00:00
commit f9f347039b
10 changed files with 170 additions and 38 deletions

View file

@ -39,9 +39,6 @@ func listCerts(ctx *cli.Context) error {
fmt.Printf("Domain\tValidTill\n\n")
for _, cert := range items {
if cert.Domain[0] == '.' {
cert.Domain = "*" + cert.Domain
}
fmt.Printf("%s\t%s\n",
cert.Domain,
time.Unix(cert.ValidTill, 0).Format(time.RFC3339))