mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-16 02:00:45 +00:00
19 lines
255 B
Go
19 lines
255 B
Go
package command
|
|
|
|
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
|
|
}
|