feat:合图调整

This commit is contained in:
momo
2023-08-31 11:56:15 +08:00
parent 2853d8599f
commit ad7a8858a2
5 changed files with 165 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ import (
type Repositories struct {
ImageHandle repositories.ImageHandle
NewResource repositories.Resource
}
type NewAllRepositorieData struct {
@@ -20,5 +21,6 @@ type NewAllRepositorieData struct {
func NewAllRepositories(newData *NewAllRepositorieData) *Repositories {
return &Repositories{
ImageHandle: repositories.NewImageHandle(newData.GormDB, newData.BLMServiceUrl, newData.AwsSession),
NewResource: repositories.NewResource(newData.GormDB, newData.BLMServiceUrl, newData.AwsSession),
}
}