fix: missing components in construction
This commit is contained in:
parent
64492713f7
commit
407114f527
|
@ -72,9 +72,11 @@ type StorageServiceParams struct {
|
||||||
|
|
||||||
func NewStorageService(params StorageServiceParams) *StorageServiceDefault {
|
func NewStorageService(params StorageServiceParams) *StorageServiceDefault {
|
||||||
return &StorageServiceDefault{
|
return &StorageServiceDefault{
|
||||||
config: params.Config,
|
config: params.Config,
|
||||||
db: params.Db,
|
db: params.Db,
|
||||||
renter: params.Renter,
|
renter: params.Renter,
|
||||||
|
logger: params.Logger,
|
||||||
|
metadata: params.Metadata,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue