fix: missing components in construction

This commit is contained in:
Derrick Hammer 2024-02-17 03:36:18 -05:00
parent 64492713f7
commit 407114f527
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 5 additions and 3 deletions

View File

@ -72,9 +72,11 @@ type StorageServiceParams struct {
func NewStorageService(params StorageServiceParams) *StorageServiceDefault {
return &StorageServiceDefault{
config: params.Config,
db: params.Db,
renter: params.Renter,
config: params.Config,
db: params.Db,
renter: params.Renter,
logger: params.Logger,
metadata: params.Metadata,
}
}