aboutsummaryrefslogtreecommitdiff
path: root/search.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2024-05-28 21:15:28 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2024-05-28 21:15:28 +0530
commit160496938ebb9a32d0d3d41071a3daaf2480bb33 (patch)
tree2d492289570b394d4ab80c9bd668b36855a35e10 /search.go
parent80288b7a0330b035a50c5898b566c0163e206316 (diff)
made Search function publicv1.1.0
Diffstat (limited to 'search.go')
-rw-r--r--search.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/search.go b/search.go
index 40f495d..acb611e 100644
--- a/search.go
+++ b/search.go
@@ -22,10 +22,10 @@ import (
"strconv"
)
-func search(q SearchQuery) ([]Entry, error) {
+func Search(q SearchQuery) ([]Entry, error) {
var res []Entry
- url, err := q.Build()
+ url, err := q.build()
if err != nil {
return res, err
}