mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-14 17:20:41 +00:00
18 lines
264 B
Go
18 lines
264 B
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
// Host prints out the host part from the url
|
||
|
func Host(ctx *cli.Context) error {
|
||
|
parts := parseURL(ctx.String("url"))
|
||
|
|
||
|
if len(parts.Scheme) > 0 {
|
||
|
fmt.Println(parts.Hostname())
|
||
|
}
|
||
|
return nil
|
||
|
}
|