2023-07-13 16:14:38 +02:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
C "github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Commands() []*C.Command {
|
|
|
|
return []*C.Command{
|
|
|
|
PipeCommand(),
|
|
|
|
OptionCommand(),
|
|
|
|
EitherCommand(),
|
2023-07-13 17:34:13 +02:00
|
|
|
TupleCommand(),
|
2023-07-13 16:14:38 +02:00
|
|
|
}
|
|
|
|
}
|