riot_pkg.go 904 B

123456789101112131415161718192021222324252627282930
  1. // Copyright 2013 Hui Chen
  2. // Copyright 2016 ego authors
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License"): you may
  5. // not use this file except in compliance with the License. You may obtain
  6. // a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. // License for the specific language governing permissions and limitations
  14. // under the License.
  15. /*
  16. Package riot full text search engine
  17. */
  18. package riot
  19. import (
  20. // _ "github.com/cznic/kv"
  21. _ "github.com/coreos/bbolt"
  22. // _ "github.com/boltdb/bolt"
  23. _ "github.com/dgraph-io/badger"
  24. _ "github.com/go-ego/gse"
  25. _ "github.com/go-ego/murmur"
  26. _ "github.com/syndtr/goleveldb/leveldb"
  27. )