Initial commit

This commit is contained in:
Musab Gültekin
2019-06-06 17:11:19 +03:00
commit 1c96048082
4 changed files with 94 additions and 0 deletions

14
gezer_test.go Normal file
View File

@ -0,0 +1,14 @@
package gezer
import (
"fmt"
"testing"
)
func TestGezer_StartURLs(t *testing.T) {
gezer := NewGezer()
gezer.StartURLs("https://api.ipify.org")
for result := range gezer.Results {
fmt.Println(string(result.Body))
}
}