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

Commit

Permalink
🎨Colors....Yay
Browse files Browse the repository at this point in the history
  • Loading branch information
athul committed Feb 1, 2020
1 parent 347dbbb commit a303eff
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ import (
"os"

mets "github.com/athul/pwcli/methods"
"github.com/fatih/color"
"github.com/urfave/cli"
)

func main() {
app := cli.NewApp()
app.Name = "Postwoman CLI"
app.Version = "0.0.1"
app.Usage = "Test API endpoints without the hassle"
app.Description = "Made with <3 by Postwoman Team"
app.Name = color.HiGreenString("Postwoman CLI")
app.Version = color.HiRedString("0.0.2")
app.Usage = color.HiYellowString("Test API endpoints without the hassle")
app.Description = color.HiBlueString("Made with <3 by Postwoman Team")

getFlags := []cli.Flag{
cli.StringFlag{
Expand Down

0 comments on commit a303eff

Please sign in to comment.