diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-04-17 11:54:16 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-04-17 11:54:16 -0700 |
commit | c7f017af059d7838ba9bc6d369bdedd43d45ea5b (patch) | |
tree | efd21e25794747f230cffddb0313e55ff37108a8 /system/search/search.go | |
parent | 1967bdc0363f538ecc61134537d680bd6d0b0b82 (diff) |
package documentation for godoc
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" ) |