mirror of
https://github.com/go-acme/lego
synced 2026-03-14 22:45:48 +01:00
16 lines
276 B
Go
16 lines
276 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
func createList() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "list",
|
|
Usage: "Display certificates and accounts information.",
|
|
Commands: []*cli.Command{
|
|
createListCertificates(),
|
|
createListAccounts(),
|
|
},
|
|
}
|
|
}
|