Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tbdsux committed Jun 6, 2021
1 parent c9b33ca commit 8dd52a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions minidb.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sync"
)

const Version = "0.1.5"
const Version = "0.1.6"

type (
// BaseMiniDB is the base db structure.
Expand All @@ -17,7 +17,7 @@ type (
MiniDB struct {
path string
filename string
content MiniDBContent
content MiniDBContent
mutexes map[string]*sync.Mutex
BaseMiniDB
}
Expand All @@ -31,14 +31,14 @@ type (

// MiniCollections is a collections store.
MiniCollections struct {
content []interface{}
content []interface{}
mutexes map[int]*sync.Mutex
BaseMiniDB
}

// MiniStore is a key-value store.
MiniStore struct {
content map[string]interface{}
content map[string]interface{}
mutexes map[string]*sync.Mutex
BaseMiniDB
}
Expand Down

0 comments on commit 8dd52a6

Please sign in to comment.