mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-14 17:20:41 +00:00
22 lines
346 B
Go
22 lines
346 B
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/thegeeklab/url-parser/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Run default command and print out full url.
|
|
func Run(cfg *config.Config) cli.ActionFunc {
|
|
return func(ctx *cli.Context) error {
|
|
parts := parseURL(cfg.URL)
|
|
|
|
if len(parts.String()) > 0 {
|
|
fmt.Println(parts)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|