移除调试信息

This commit is contained in:
2023-12-03 16:05:51 +08:00
parent 7324d27bc1
commit 4b8f3c669c
2 changed files with 0 additions and 6 deletions

View File

@@ -5,7 +5,6 @@ import (
"context"
"crypto/tls"
"encoding/json"
"fmt"
"log"
"net/http"
@@ -59,7 +58,6 @@ type SearchData struct {
func (sd SearchData) GetIDList() (id_list []string) {
for _, hit := range sd.Hits.Hits {
id_list = append(id_list, hit.ID)
fmt.Println(hit.Source.Content)
}
return id_list
}