mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-15 01:30:42 +00:00
22 lines
372 B
Go
22 lines
372 B
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/thegeeklab/url-parser/config"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
// Fragment prints out the fragment part from the url.
|
||
|
func Fragment(config *config.Config) cli.ActionFunc {
|
||
|
return func(ctx *cli.Context) error {
|
||
|
parts := parseURL(config.URL)
|
||
|
|
||
|
if len(parts.Scheme) > 0 {
|
||
|
fmt.Println(parts.Fragment)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
}
|