mirror of
https://github.com/go-acme/lego.git
synced 2024-11-28 17:41:10 +02:00
15 lines
245 B
Go
15 lines
245 B
Go
package cmd
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
// CreateCommands Creates all CLI commands.
|
|
func CreateCommands() []*cli.Command {
|
|
return []*cli.Command{
|
|
createRun(),
|
|
createRevoke(),
|
|
createRenew(),
|
|
createDNSHelp(),
|
|
createList(),
|
|
}
|
|
}
|