diff --git a/main.go b/main.go index 69c538c..ebd636b 100644 --- a/main.go +++ b/main.go @@ -18,6 +18,7 @@ type Output struct { AuthSuccess bool Error string CertLoaded bool + Results string } func GetFilePath(path string) string { @@ -171,6 +172,7 @@ func main() { return } else { output.AuthSuccess = true + output.Results = fmt.Sprintf("Search result count: %d", len(result.Entries)) b, _ := json.Marshal(output) fmt.Println(string(b)) return