Skip to content
This repository was archived by the owner on Jul 14, 2022. It is now read-only.

Commit a303eff

Browse files
committed
🎨Colors....Yay
1 parent 347dbbb commit a303eff

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

‎cli.go‎

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ import (
55
"os"
66

77
mets "github.com/athul/pwcli/methods"
8+
"github.com/fatih/color"
89
"github.com/urfave/cli"
910
)
1011

1112
func main() {
1213
app := cli.NewApp()
13-
app.Name = "Postwoman CLI"
14-
app.Version = "0.0.1"
15-
app.Usage = "Test API endpoints without the hassle"
16-
app.Description = "Made with <3 by Postwoman Team"
14+
app.Name = color.HiGreenString("Postwoman CLI")
15+
app.Version = color.HiRedString("0.0.2")
16+
app.Usage = color.HiYellowString("Test API endpoints without the hassle")
17+
app.Description = color.HiBlueString("Made with <3 by Postwoman Team")
1718

1819
getFlags := []cli.Flag{
1920
cli.StringFlag{

0 commit comments

Comments
 (0)