mirror of
https://github.com/IBM/fp-go.git
synced 2025-06-17 00:07:49 +02:00
14 lines
168 B
Go
14 lines
168 B
Go
![]() |
package cli
|
||
|
|
||
|
import (
|
||
|
C "github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func Commands() []*C.Command {
|
||
|
return []*C.Command{
|
||
|
PipeCommand(),
|
||
|
OptionCommand(),
|
||
|
EitherCommand(),
|
||
|
}
|
||
|
}
|