Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/docs/getting-started/go-module-usage.md
988 views

Go module usage

You can easily use scanners in your own Golang script. You can find Go documentation here.

Install the module

go get -v github.com/sundowndev/phoneinfoga/v2

Usage example

package main import ( "fmt" "log" "github.com/sundowndev/phoneinfoga/v2/lib/number" "github.com/sundowndev/phoneinfoga/v2/lib/remote" ) func main() { n, err := number.NewNumber("...") if err != nil { log.Fatal(err) } res, err := remote.NewGoogleSearchScanner().Scan(n) if err != nil { log.Fatal(err) } links := res.(remote.GoogleSearchResponse) for _, link := range links.Individuals { fmt.Println(link.URL) // Google search link to scan } }