mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-13 08:40:42 +00:00
c6b5c9d03d
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
22 lines
354 B
Go
22 lines
354 B
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/thegeeklab/url-parser/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Host prints out the host part from the url.
|
|
func Host(cfg *config.Config) cli.ActionFunc {
|
|
return func(_ *cli.Context) error {
|
|
parts := parseURL(cfg.URL)
|
|
|
|
if len(parts.Scheme) > 0 {
|
|
fmt.Println(parts.Hostname())
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|