generated from PenaSide/GolangTemplate
21 lines
385 B
Go
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{}
|
|
}
|