url-parser/internal/command/scheme.go

18 lines
265 B
Go
Raw Normal View History

2020-09-21 20:24:51 +02:00
package command
2020-02-03 00:05:18 +01:00
import (
"fmt"
"github.com/urfave/cli/v2"
)
// Scheme prints out the scheme part from the url
func Scheme(ctx *cli.Context) error {
2020-02-03 12:44:19 +01:00
parts := parseURL(ctx.String("url"))
2020-02-03 00:05:18 +01:00
if len(parts.Scheme) > 0 {
fmt.Println(parts.Scheme)
}
return nil
}