customer/internal/initialize/services.go
2023-05-16 07:01:55 +03:00

21 lines
385 B
Go

package initialize
import (
"github.com/sirupsen/logrus"
"penahub.gitlab.yandexcloud.net/pena-services/customer/internal/models"
)
type ServicesDeps struct {
Logger *logrus.Logger
Config *models.ServiceConfiguration
Repositories *Repositories
Clients *Clients
}
type Services struct {
}
func NewServices(deps *ServicesDeps) *Services {
return &Services{}
}