mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-05 21:00:53 +00:00
18 lines
255 B
Go
18 lines
255 B
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
// Port prints out the port from the url
|
||
|
func Port(ctx *cli.Context) error {
|
||
|
parts := parseURL(ctx.String("url"))
|
||
|
|
||
|
if len(parts.Scheme) > 0 {
|
||
|
fmt.Println(parts.Port())
|
||
|
}
|
||
|
return nil
|
||
|
}
|