forked from TrueCloudLab/lego
219222fdda
* fix: challenge are not required for revoke.
14 lines
278 B
Go
14 lines
278 B
Go
package cmd // import "github.com/xenolf/lego/cmd"
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// CreateCommands Creates all CLI commands
|
|
func CreateCommands() []cli.Command {
|
|
return []cli.Command{
|
|
createRun(),
|
|
createRevoke(),
|
|
createRenew(),
|
|
createDNSHelp(),
|
|
createList(),
|
|
}
|
|
}
|