diff options
Diffstat (limited to 'system/search/search.go')
-rw-r--r-- | system/search/search.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/system/search/search.go b/system/search/search.go index 6d538ed..0b058bf 100644 --- a/system/search/search.go +++ b/system/search/search.go @@ -1,6 +1,10 @@ +// Package search is a wrapper around the blevesearch/bleve search indexing and +// query package, and provides interfaces to extend Ponzu items with rich, full-text +// search capability. package search import ( + "encoding/json" "errors" "fmt" "os" @@ -9,8 +13,6 @@ import ( "github.com/ponzu-cms/ponzu/system/item" - "encoding/json" - "github.com/blevesearch/bleve" "github.com/blevesearch/bleve/mapping" ) |