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