use the underlying kv database to store data
| 108 | |
| 109 | // use the underlying kv database to store data |
| 110 | type kvDBAdapter struct { |
| 111 | db kvAdapter |
| 112 | } |
| 113 | |
| 114 | func (b *kvDBAdapter) Init() error { |
| 115 | err := b.db.InitBucket(_workerBucketKey) |
nothing calls this directly
no outgoing calls
no test coverage detected