mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
14 lines
245 B
Go
14 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(),
|
|
}
|
|
}
|