url-parser/command/port.go

22 lines
387 B
Go
Raw Normal View History

package command
import (
"fmt"
"github.com/thegeeklab/url-parser/config"
"github.com/urfave/cli/v2"
)
// Port prints out the port from the url.
func Port(cfg *config.Config) cli.ActionFunc {
return func(_ *cli.Context) error {
parts := NewURLParser(cfg.URL, cfg.QueryField, cfg.QuerySplit).parse()
if len(parts.Scheme) > 0 {
fmt.Println(parts.Port)
}
return nil
}
}