forked from TrueCloudLab/lego
15 lines
239 B
Go
15 lines
239 B
Go
|
package cmd
|
||
|
|
||
|
import "github.com/urfave/cli"
|
||
|
|
||
|
// CreateCommands Creates all CLI commands
|
||
|
func CreateCommands() []cli.Command {
|
||
|
return []cli.Command{
|
||
|
createRun(),
|
||
|
createRevoke(),
|
||
|
createRenew(),
|
||
|
createDNSHelp(),
|
||
|
createList(),
|
||
|
}
|
||
|
}
|