github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istorage/bbolt/provide.go (about)

     1  /*
     2   * Copyright (c) 2022-present Sigma-Soft, Ltd.
     3   * @author: Dmitry Molchanovsky
     4   */
     5  
     6  package bbolt
     7  
     8  import (
     9  	"github.com/voedger/voedger/pkg/istorage"
    10  )
    11  
    12  func Provide(params ParamsType) istorage.IAppStorageFactory {
    13  	return &appStorageFactory{
    14  		bboltParams: params,
    15  	}
    16  }