Files
juwan-backend/app/email/mq/internal/svc/serviceContext.go
T

14 lines
211 B
Go

package svc
import "juwan-backend/app/email/mq/internal/config"
type ServiceContext struct {
c config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
c: c,
}
}