diff options
Diffstat (limited to 'db.go')
-rw-r--r-- | db.go | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +package bolt + +const ( + NoSync = iota + NoMetaSync + DupSort + IntegerKey + IntegerDupKey +) + +type DB interface { +} + +type db struct { +} + +func NewDB() DB { + return &db{} +} |