Separate subprefix db export
This commit is contained in:
parent
1d77ad98dc
commit
dae12ac498
@ -2,12 +2,14 @@ package common
|
||||
|
||||
import (
|
||||
"git.defalsify.org/vise.git/db"
|
||||
|
||||
"git.grassecon.net/urdt/ussd/internal/storage"
|
||||
)
|
||||
|
||||
func StoreToDb(store *UserDataStore, prefix []byte) db.Db {
|
||||
innerStore := store.Db
|
||||
if pfx != nil {
|
||||
innerStore = NewSubPrefixDb(innerStore, pfx)
|
||||
}
|
||||
return innerStore
|
||||
func StoreToDb(store *UserDataStore) db.Db {
|
||||
return store.Db
|
||||
}
|
||||
|
||||
func StoreToPrefixDb(store *UserDataStore, pfx []byte) storage.PrefixDb {
|
||||
return storage.NewSubPrefixDb(store.Db, pfx)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user