url-parser/commands/run.go

18 lines
254 B
Go
Raw Normal View History

2020-02-03 00:05:18 +01:00
package commands
import (
"fmt"
"github.com/urfave/cli/v2"
)
// Run default command and print out full url
func Run(ctx *cli.Context) error {
2020-02-03 12:44:19 +01:00
parts := parseURL(ctx.String("url"))
2020-02-03 00:05:18 +01:00
if len(parts.String()) > 0 {
fmt.Println(parts)
}
return nil
}