mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-14 01:00: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
356 B
Go
22 lines
356 B
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/thegeeklab/url-parser/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Scheme prints out the scheme part from the url.
|
|
func Scheme(cfg *config.Config) cli.ActionFunc {
|
|
return func(_ *cli.Context) error {
|
|
parts := parseURL(cfg.URL)
|
|
|
|
if len(parts.Scheme) > 0 {
|
|
fmt.Println(parts.Scheme)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|