mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-18 03:00:43 +00:00
18 lines
252 B
Go
18 lines
252 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)
|
||
|
|
||
|
if len(parts.Scheme) > 0 {
|
||
|
fmt.Println(parts.Scheme)
|
||
|
}
|
||
|
return nil
|
||
|
}
|