lego/cmd/cmd_list.go
2026-02-12 19:57:47 +01:00

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(),
},
}
}