mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-05 21:00:53 +00:00
18 lines
254 B
Go
18 lines
254 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Run default command and print out full url
|
|
func Run(ctx *cli.Context) error {
|
|
parts := parseURL(ctx.String("url"))
|
|
|
|
if len(parts.String()) > 0 {
|
|
fmt.Println(parts)
|
|
}
|
|
return nil
|
|
}
|