diff options
| author | demo <demo@antix1> | 2026-05-09 09:58:00 -0400 |
|---|---|---|
| committer | demo <demo@antix1> | 2026-05-09 09:58:00 -0400 |
| commit | 7fe62a3f676d810c8df46fa24a7314a2209a9dd2 (patch) | |
| tree | 47986644bfe3dcd58ceab737c91c6778e600264f /cmd/httpclient | |
| parent | 29d93b1089c591b0d9de60f983e5528caa42b7f6 (diff) | |
feat: use better formatting when printing found links
Diffstat (limited to 'cmd/httpclient')
| -rw-r--r-- | cmd/httpclient/main.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/httpclient/main.go b/cmd/httpclient/main.go index 945ee36..3744d78 100644 --- a/cmd/httpclient/main.go +++ b/cmd/httpclient/main.go @@ -46,5 +46,7 @@ func main() { log.Fatal(err) } - fmt.Println(links) + for _, link := range links { + fmt.Printf("%s\n\n", findlinks.Format(link, "\n")) + } } |
