package initialize
import (
"github.com/sirupsen/logrus"
)
type ControllersDeps struct {
Logger *logrus.Logger
Services *Services
}
type Controllers struct {
func NewControllers(deps *ControllersDeps) *Controllers {
return &Controllers{}