fix:重构合图模块
This commit is contained in:
24
initalize/service.go
Normal file
24
initalize/service.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package initalize
|
||||
|
||||
import (
|
||||
"fusenapi/service/repositories"
|
||||
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Repositories struct {
|
||||
ImageHandle repositories.ImageHandle
|
||||
}
|
||||
|
||||
type NewAllRepositorieData struct {
|
||||
GormDB *gorm.DB
|
||||
BLMServiceUrl *string
|
||||
AwsSession *session.Session
|
||||
}
|
||||
|
||||
func NewAllRepositories(newData *NewAllRepositorieData) *Repositories {
|
||||
return &Repositories{
|
||||
ImageHandle: repositories.NewImageHandle(newData.GormDB, newData.BLMServiceUrl, newData.AwsSession),
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user