| 121 | } |
| 122 | |
| 123 | type DB struct { |
| 124 | ctx context.Context |
| 125 | path string |
| 126 | db *kv.CRDTKeyValueDB |
| 127 | namespace string |
| 128 | leveldb *leveldb.DB |
| 129 | iteratorOpts badger.IteratorOptions |
| 130 | } |
| 131 | |
| 132 | func (d *DB) GetLevelDB() *leveldb.DB { |
| 133 | return d.leveldb |
nothing calls this directly
no outgoing calls
no test coverage detected