Impl delete find filters for boltdb

This commit is contained in:
Bel LaPointe
2020-07-23 16:41:50 -06:00
parent 085150a7b5
commit bed265a228
13 changed files with 670 additions and 92 deletions

View File

@@ -0,0 +1,10 @@
package driver
import "testing"
func TestDriver(t *testing.T) {
var driver Driver
driver = &Mongo{}
driver = &BoltDB{}
t.Log(driver)
}