github.com/unicornultrafoundation/go-u2u@v1.0.0-rc1.0.20240205080301-e74a83d3fadc/utils/dbutil/asyncflushproducer/store.go (about)

     1  package asyncflushproducer
     2  
     3  import "github.com/unicornultrafoundation/go-helios/u2udb"
     4  
     5  type store struct {
     6  	u2udb.Store
     7  	CloseFn func() error
     8  }
     9  
    10  func (s *store) Close() error {
    11  	return s.CloseFn()
    12  }